Creating and calling a function that accepts arguments : Definition « Functions « PHP
- PHP
- Functions
- Definition
Creating and calling a function that accepts arguments
<?
function saysomething ($something){
echo $something . "<br />";
}
Saysomething ("Hello World!");
?>
Related examples in the same category