Guest User

Untitled

a guest
Feb 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <html>
  2. <head></head>
  3. <body>
  4.  
  5. Agent: So who do you think you are, anyhow?
  6. <br />
  7.  
  8. <?php
  9. // define variables
  10. $name = 'Jesse';
  11. $rank = 'Human';
  12. $serialNumber = 2;
  13. $world1 = 'Earth';
  14. $world2 = 'Space';
  15.  
  16. // print output
  17. echo "Jesse: I am <b>$name</b>, the <b>$rank</b>. You can call me by my serial number, <b>$serialNumber</b>."<br>"Agent: You are from <b>$world1</b>. How have you entered <b>$world2</b>?";
  18. ?>
  19.  
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment