Find maximum of given values - PHP Views : 259
Tagged in : PHP
Send mail vote down 0 vote down 0
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 .