Advertisement
nikolaysimeonov

06.Quotes in Strings

Jun 12th, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <title>06.Quotes in Strings</title>
  5.         <meta charset="utf8"/>
  6. </head>
  7. <body>
  8. <?php
  9. $say = "I asked a girl out and she said – ";
  10. $answer = "\"I don't know\". ";
  11. $question="Does she mean yes or no?";
  12. echo "I asked a girl out and she said – ".$answer."Does she mean yes or no?<br/>";
  13. echo $say.$answer.$question;
  14. ?>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement