This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

The PHP echo Statement

PHP is Fun!

Hello world!
I'm about to learn PHP!
This string was made with multiple parameters.

<?php
echo "<h2>PHP is Fun!</h2>";
echo "<p>Hello world!<br>";
echo "I'm about to learn PHP!<br>";
echo "This ", "string ", "was ", "made ", "with multiple parameters.<p>";
?>