You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
217 B

  1. <?php
  2. $title='php';
  3. $str=<<<str
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title> $title </title>
  8. </head>
  9. <body>
  10. hello world!
  11. </body>
  12. </html>
  13. str;
  14. echo $str;
  15. ?>