On 03 February 2004 13:45, Alessandro Vitale contributed these pearls of
wisdom:
> try removing curly braces as follows:
>
> $query = mysql_query("UPDATE stories SET status='approved'
> WHERE story_id={$id}"); |
Nothing wrong with the above, it's perfectly valid -- just a slightly
different way of writing:
> $query = mysql_query("UPDATE stories SET status='approved'
> WHERE story_id=${id}");
Cheers!
Mike
--
Mike Ford, Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS, LS6 3QS, United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730 Fax: +44 113 283 3211
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php