Find maximum of given values - PHP Views : 279
Tagged in : PHP
0 0
Send mail
In php we can find maximum values using Max function

<?php
echo(max(5,7));
echo(max(-3,5));
echo(max(-3,-5));
echo(max(7.25,7.30))
?>

Result
7
5
-3
7.3
By kalai, On - 2010-03-12



    Login to add Comments .