I need a special way to feed html into a string variable
Posted: Wed May 12, 2004 8:09 pm
I'm in a situation where I need to feed html text into a string variable, in a way like this:
<?
$var = "
?>
text text text
<? ";
echo someFunction( $var );
?>
Obviously, that isn't working. Any suggestions?
<?
$var = "
?>
text text text
<? ";
echo someFunction( $var );
?>
Obviously, that isn't working. Any suggestions?