0
Hello World In PHP
How do I make Hello World appear on the console on this app? (Already Answered)
2 Answers
+ 1
Okay.
+ 6
Trying the example from the lesson linked by satnam. You can remove all the html and still print hello using echo.
<?php
echo "Hello World!";
?>
But directly writing hello also appears to work fine.