fork download
  1. <?php
  2.  
  3. $name = stream_get_contents(STDIN);
  4.  
  5. $message = <<<EOD
  6. <html>
  7. <head>
  8. <title>Birthday Reminders for August</title>
  9. </head>
  10. <body>
  11. <p>Here are the birthdays upcoming in August!</p>
  12. <table>
  13. <tr>
  14. <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
  15. </tr>
  16. <tr>
  17. <td>$name</td><td>3rd</td><td>August</td><td>1970</td>
  18. </tr>
  19. <tr>
  20. <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
  21. </tr>
  22. </table>
  23. </body>
  24. </html>
  25. EOD;
  26.  
  27. echo $message;
Success #stdin #stdout 0.01s 20568KB
stdin
太郎
stdout
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>太郎</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>