First grab an associative array of the variables from the database with 
mysql_fetch_array()

Then use extract($array); to extract all of the variables in the array 
to the symbol table:

www.php.net/extract

Simon

Baloo :0) wrote:

>How can I assign automatically all fields of a database to a variable of
>the same name?
>
>Instead of having to manually do
>$user_id=$row["user_id"];
>etc
>
>Then how could I know the number of fields in the table so I can do a
>loop to print them all in html?
>
>In advance, thanks for your help.
>
>Alfredo
>
>




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to