Functions Php



Declaring a Function


function bighello(){
     print "

HELLO!

";
}
bighello();
?>