Mega Code Archive

 
Categories / Php / Functions
 

Declaring a Function

<html> <head> <title>Declaring a Function</title> </head> <body> <?php function bighello(){      print "<h1>HELLO!</h1>"; } bighello(); ?>  </body> </html>