Correct output text to "Hello World!" (#24449)

Correct the output text to read "Hello World!" instead of "This is my first PHP script!".
This commit is contained in:
Dhiraj Kanchan
2018-11-17 16:05:04 +11:00
committed by Aditya
parent 09b5c6941e
commit a4f87125d3

View File

@ -35,7 +35,7 @@ Below, we have an example of a simple PHP file, with a PHP script that uses a bu
<body> <body>
<?php <?php
echo "My first PHP script!"; echo "Hello World!";
?> ?>
</body> </body>