Back To PHP User Defined Functions Index
$max) { $max=$b; } if($c>$max) { $max=$c; } print('largest of three numbers is ' . $max); } large(9,10,11); ?>