Hi, I want to print each element of a column of a mysql database. For exemple to print the first element could we do like this: Code:
$result = mysql_query( "SELECT username FROM users" ); $column = mysql_fetch_array($result); print $column[1]; print $column[3]; Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php