hi
i'm trying to use PHP to find the lowest number in a group of numbers (say 100)... how can i do this in PHP?
p.s. thanks for taking the time to check this out
Just use the min() function like below;
echo min(22,13,1,66,7,45,218, 55);//output 1
Use that for a list, or use
echo min(array(102,40, 55,45));//output 40
for an array of numbers. To do the reverso just use max()