Jason Martyn wrote:

Here's kinda what I'm trying to do (not working of course).

[snip unimportant code]

mysql_query = ("select");
while ($result = mysql_fetch_array($sql_uc, MYSQL_ASSOC)
{
mysql_query .= (" ". $season .".".$result['field_name']." as ".$result['display'].",";
}
mysql_query .= ("from ".$season.";");


You're trying to assign to a function, seriousley messed up. I reccomend you make sure you know PHP before going any further.

--
The above message is encrypted with double rot13 encoding.  Any unauthorized attempt 
to decrypt it will be prosecuted to the full extent of the law.



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



Reply via email to