Mega Code Archive

 
Categories / Php / Functions
 

Creating and calling a function that accepts arguments

<? function saysomething ($something){      echo $something . "<br />";  }  Saysomething ("Hello World!");  ?>