hi all
<?php
$foo="NO";
$text=<<<EO
The variable is named: $foo
EO;
if (TRUE)
{
$foo="YES";
die($text); //how to get $foo="YES" into $text?
}
?>
Trying to get $foo="YES" into $text, but NO appears instead. Any ideas?
gr Jan
<?php
$foo="NO";
$text=<<<EO
The variable is named: $foo
EO;
if (TRUE)
{
$foo="YES";
die($text); //how to get $foo="YES" into $text?
}
?>
Trying to get $foo="YES" into $text, but NO appears instead. Any ideas?
gr Jan
Comment