Mega Code Archive

 
Categories / Php / Functions
 

Declaring a Simple Function

<?php   function aFunction(){       print "Music is a way of life!";   }   aFunction();   ?>