fork download
  1.  
  2. <html>
  3.  
  4. <head></head>
  5.  
  6. <body>
  7.  
  8. Agent: So who do you think you are, anyhow?
  9.  
  10. <br />
  11.  
  12. <?php
  13.  
  14. // define variables
  15.  
  16. $name = 'Neo';
  17.  
  18. $rank = 'Anomaly';
  19.  
  20. $serialNumber = 1;
  21.  
  22. // print output
  23.  
  24. echo "Neo: I am <b>$name</b>, the <b>$rank</b>. You can call me by my serial number, <b>$serialNumber</b>.";
  25.  
  26. ?>
  27.  
  28.  
  29.  
  30. </body>
  31.  
  32. </html>
  33.  
  34.  
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
<html>

<head></head>

<body>

Agent: So who do you think you are, anyhow?

<br />

Neo: I am <b>Neo</b>, the <b>Anomaly</b>. You can call me by my serial number, <b>1</b>.


</body>

</html>