printing a statment in php

Solutions on MaxInterview for printing a statment in php by the best coders in the world

showing results for - "printing a statment in php"
Jona
11 Sep 2017
1
2<?php
3
4 echo "<h2>PHP is Fun!</h2>";
5
6 echo "Hello world!<br>";
7echo "I'm about to learn PHP!<br>";
8
9 echo "This ", "string ", "was ", "made ", "with multiple parameters.";
10
11?>
12