View Single Post
Old 05-22-2010, 02:26 PM   #9 (permalink)
core1024
The Wanderer
 
Join Date: May 2010
Posts: 19
Thanks: 1
core1024 is on a distinguished road
Default

you can even
PHP Code:
$r mysql_query('SELECT no, matter FROM whatever WHERE something');
mysql_fetch_assoc($r)
while (
$row mysql_fetch_assoc($r)) {
   echo 
'<pre>'.print_r($row,true).'</pre>';

core1024 is offline  
Reply With Quote