Declaring a Function : Definition : Functions PHP Source Code


PHP Source Code » Functions » Definition »

 

Declaring a Function



<html>
<head>
<title>Declaring a Function</title>
</head>
<body>
<?php

function bighello(){
     print "<h1>HELLO!</h1>";
}

bighello();

?>
 </body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Definition