I saw this used in a script, but after a couple of searches didn't come up with anything on php.net.
<? $var=<<<content <table> <tr> <td> <font color="red"> $phpvarhere </font> </td> </tr> </table> content; echo $var; ?> So, does this allow you to output mixed html/php without having to escape offending characters with no echo or print? Conceptually, would the syntax above work? TIA Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php