Problem:
You want to find out the maximum value from an array.
Solution:
max() function can help you to the highest value of an Array. See the following example-
[php]
<?php
$numbers = array(77, 455, 1000);
echo max($numbers);
?>
[/php]
Output:
1000