1 2 3 4 5 6 7 8 9
<?php print ('This works'); print ("So does this"); print ('and can be \'escaped\'.'); print ("I can \"escape\" too."); /* print ("Today I won £", $prize);// this will throw an error as it has 2 paramaters */ ?>
1
This worksSo does thisand can be 'escaped'.I can "escape" too.