hehehe how do i do this?
How about reading a manual first!?
Or, if I misunderstand you.. Restate your question?
Anyway.
In general:
$query = "select * from table"; $result = mysql_query($query); while $row =@mysql_fetch_array($result); { echo $row[0]; }
J.
to display a field from the db on the page..
what leatherback said should do it
except maybe the
$row[0] //its not a numeric array, its associative
so use
$row['fieldnamefromtablefromdatabase']
Oops.. Yeah, sorry about that (building a resizing / indexing routine for images on my harddrive/cd-s.. Using numerical arrays now..)
Ok thank you.