Display strings with the echo command


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 230 Bytes

HITS: 282

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo "<h2>PHP is Fun!</h2>";
  6. echo "Hello world!<br>";
  7. echo "I'm about to learn PHP!<br>";
  8. echo "This ", "string ", "was ", "made ", "with multiple parameters.";
  9. ?>
  10. </body>
  11. </html>

comments powered by Disqus