Hello World Example
No site would be complete without the textbook hello world example…so here it is
<?php
/**
* Hello World Example
*/
function foo($bar){
print $bar;
}
$bar = 'Hello World';
foo($bar);
?>
Categories: PHP
Recent Comments