How can I handle comments in the middle of an echo command?
This syntax is getting me a syntax error but why is not compliant?
<?
echo "Print this " . /*but not this*/ . " and this\n";
?>
Am I forced to write 3 separate statements?
<?
echo "Print this "
/*but not this*/
echo " and this\n";
?>