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