> The standard quote (') should be used to delimit string literals in MYSQL
> statements. Use it to surround strings you're inserting into or comparing
> against VARCHARs, CHARs, TEXTs, etc.> $sql = "UPDATE mytable SET name='Best Table Of All' WHERE id=3"; That is ok if you call MySQL in your .php. But in PHPMyAdmin, it seems preferable to use `. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

