[GLLUG] PHP Variable problem

Mike Szumlinski szumlins@mac.com
Mon, 10 Mar 2003 16:04:24 -0500


This is probably a really easy one...

Does anyone know how to append text to a PHP variable that is currently 
held as a string?  Example

$myVar = "Blaaaah";

echo "$myVar_now";

I want that to spit out "Blaaaah_now"

My problem is that PHP thinks that $myVar_now is a variable, not a 
variable with an...err..appendage.

-Mike