Re: [PHP-DB] Assign a variable with another variables value

2002-12-01 Thread Leif K-Brooks
$foo = "BAR"; $varname = "new$foo"; $$varname = "some string"; Martin Allan Jensen wrote: Hi folks, I probably need a little help the next couble of days, but well here is the first question. How can i assign a variable with the value of another variable ?? Example: $foo = "BAR"; $newBAR = "

RE: [PHP-DB] Assign a variable with another variables value

2002-12-01 Thread Beau Lebens
er 2002 10:30 AM // To: [EMAIL PROTECTED] // Subject: [PHP-DB] Assign a variable with another variables value // // // Hi folks, // // I probably need a little help the next couble of days, but // well here is the first question. // // How can i assign a variable with the value of another va

[PHP-DB] Assign a variable with another variables value

2002-12-01 Thread Martin Allan Jensen
Hi folks, I probably need a little help the next couble of days, but well here is the first question. How can i assign a variable with the value of another variable ?? Example: $foo = "BAR"; $newBAR = "some string"; The BAR is supposed to be taken from the value of $foo. THANKS A LOT!!! Reg