Hello [Scripts],

Thursday, February 19, 2004, 6:14:31 PM, you wrote:

S> This is what I have:
S> $prefix = "demo_";

S> $table_name = '.$prefix."auth_users"';

S> This is not working, am I missing something??

Just syntax/quote issues, try:

$table_name = $prefix . "auth_users";

So much simpler :)

-- 
Best regards,
 Richard Davey
 http://www.phpcommunity.org/wiki/296.html

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

Reply via email to