The following code works: <?php
$image = ³²;
if ($image == NULL) {
print ³False!²;
}else{
print ³$var²;
}
?>
However, this does not:
<?php
$image = ³²;
if ($image == NULL) {
print ³False!²;
}else{
print ³<img src=\²$var\²>²;
}
?>
It seems that if I add a string, rather than just the variable, then does
not work. I am getting an unexpected T_IS_EQUAL error.
--
Thanks,
Steve Marquez

