[PHP] Hello, World!

Reputation
0
The following code, will output "Hello World" to your browser.

PHP:
<?php
echo 'Hello, World!';
?>
 
Very simple but nice. I hope to see more tutorials with more code in the future. I'm sure it will help with my learning PHP.
 
Purple Muffin said:
It is great when used to display a message for site updates and junk like that.

Yeah agree , but maybe its better to give it a template layout though.
 
Thank you for yet another simple PHP tutorial. I guess I shall start to follow your tutorials from this time onwards.
 
Extremely simple, but the start for all PHP coders. I remember this as the first tutorial I ever read.
 
"Print" and "Echo" functions do the same thing, but I prefer echo. I'd say this was the first tutorial I'd ever read. An oldie, but a goodie, for the newbies.
 
Back
Top