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 :
Hello All,
I am trying to do a install script.
Here is my question:
I want to do a $prefix
This is what I have:
$prefix = "demo_";
$table_name = '.$prefix."auth_users"';
This is not working, am I missing something??
Thanks in advance,
~WILL~
--
PHP General Mailing List (http://www.php.net/)
To un
2 matches
Mail list logo