View Single Post
Old 09-24-2005, 01:43 PM   #3 (permalink)
skamfroj
Hosting Master
Join Date: Sep 2005
Location: Puerto Princesa City, Palawan, Philippines
Posts: 143
skamfroj is on a distinguished road
explain the problem or what you wanted in detail(specific). so that if some know / can help.. might post a solution.

as gate2vn stated. look into php manual and sample or tutorials.

a sample mysql connection :
Quote:
$db = mysql_connect("localhost", "myusername", "mypassword");
mysql_select_db("school_database", $db);

$getFile=mysql_query("SELECT * FROM student_table WHERE category = 1 ORDER BY id,title",$db);
if ($fileInfo=mysql_fetch_array($getFile)) {
do {
echo $fileinfo[name] . "<br/>"
} while($fileInfo=mysql_fetch_array($getFile));
}
__________________
http://www.skamfroj.net
skamfroj is offline  
profile.gif home.gif sendpm.gif find.gif Reply With Quote