Re: Splitting Vars from MySQL in PHP

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> > I remember in Perl I used to extract vars from a single fetchrow by adding
> > each var name to the beginning (like this). Only this ain'ta workin :)...
> > Anyone know the right syntax to do this?
> > 
> > ($var1, $var2, $var3)= mysql_fetch_array($result, MYSQL_ASSOC)
> 
> 
> list($var1, $var2, $var3) = mysql_fetch_array($result, MYSQL_ASSOC);
> http://us4.php.net/manual/en/function.list.php

But remember that list() only works with numerical 
arrays so use MYSQL_NUM (or array_values()) in the 
above. For associative, extract() can be useful.

Regards,
Philip

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux