So how do I do it in PHP? Well the two simplest ways are using Print or Echo.
<?php
Print "Hello, World!";
?>
<?php
Echo "Hello, World!";
?>
To learn more about beginning PHP programming, read our Learn PHP article.
So how do I do it in PHP? Well the two simplest ways are using Print or Echo.
<?php
Print "Hello, World!";
?>
<?php
Echo "Hello, World!";
?>
To learn more about beginning PHP programming, read our Learn PHP article.