I am setting an array to this value:
$errorArray = array('image_name' => "\"$imageLocationPath\$origImageName\" is not found in our directory");
For some strange reason when one of my co-workers was testing the app, they saw this particular error message:
.../images/$origImageName is not found in our directory
It evaluated $imageLocationPath but not $origImageName in the same instance? However, when I ran the same app both variables evaluated just fine. What on earth???
Thanx
Phil