<?php
$author="Shweta";
print <<<END
this line
is to test
END;
?>
Does anyone have an idea on why this does not work?
<?php
$author="Shweta";
print <<<END
this line
is to test
END;
?>
Does anyone have an idea on why this does not work?
Use this one:
<?php
$author="Shweta";
echo <<<EOT
this line
is to test
EOT;
?>