On Thu, 12 Sep 2002, Hankley, Chip wrote: > fwrite($fp, "<? echo $LayerScale"); > If $LayerScale is defined, then fwrite outputs the value of $LayerScale to > the target, NOT the string $LayerScale. > How can I overcome this?
fwrite($fp, "<? echo \$LayerScale");
g.luck,
~Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

