Doh,... Thanks to all who replied so promptly with similar answers.

:) vern


On 9/10/02 9:13 AM, "Jacob Miller" <[EMAIL PROTECTED]> wrote:

> Make sure you don't have a space before the 2nd half of the table name
> 
> Wrong:
> 
> .. "FROM " . $table_prefix . " teams"
> 
> this will produce "FROM ccl_ teams"
> 
> Right:
> 
> .. "FROM " . $table_prefix . "teams"
> 
> this will product "FROM cc_teams"
> 
> - jacob


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

Reply via email to