Comment by David Dorward on 2004-04-22
Or leave PHP when you don't really need to be using it:
?>
<img src="pic.gif" alt="The alt attribute has been required since 1996"><br>
<?php
|
Or use heredoc syntax (which lets you use variables inside it):
print <<<EOF
<img src="pic.gif" alt="The alt attribute has been required since 1996"><br>
EOF;
|
Comment by Ruben Ayala on 2007-07-27
Thanks for your help...
Comment by belstaffjackets on 2010-08-29
打印< < < EOF分析
EOF分析;
|