Mega Code Archive

 
Categories / Php / Strings
 

Double-quoted strings

<? print "I've gone to the store."; print "The sauce cost \$10.25."; $cost = '$10.25'; print "The sauce cost $cost."; print "The sauce cost \$\061\060.\x32\x35."; ?>