From: [EMAIL PROTECTED] Operating system: RH Linux PHP version: 4.0.5 PHP Bug Type: Scripting Engine problem Bug description: Parsing of vars inside a string $varone="blah"; $vartwo="$varone_foo"; => The resulting contents of $vartwo is not "blah_foo" as expected. You can only get the desired result by having $vartwo= $varone . "_foo"; However something like $vartwo="foo_$varone" works as expected => "foo_blah"; Is this a language construct issue perhaps? -- Edit Bug report at: http://bugs.php.net/?id=11512&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]