PHP string


SUBMITTED BY: henry1874w

DATE: June 4, 2017, 8:10 p.m.

FORMAT: Text only

SIZE: 146 Bytes

HITS: 270

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $x = "Hello world!";
  6. $y = 'Hello world!';
  7. echo $x;
  8. echo "<br>";
  9. echo $y;
  10. ?>
  11. </body>
  12. </html>

comments powered by Disqus