Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
well, then just print it:
PHP Code:
$sql="select * from x"; $r=mysql_query($sql); while($res=mysql_fetch_array($r)){ print $res['column_name']; }
Might I suggest that you really read the tutorial.
Accessing 1 array value is something so basic, that you will have many more problems later on if you don't understand how functions, variables and iterations are working.
__________________
Only a biker knows why a dog sticks his head out the window.
|