Сравнить 3 введенных числа в форму и вывести большее
Код:
<?
if(isset($_POST['pol'])):
$mass=$_POST['pol'];
$max=$mass[0];
for($i=0;$i<count($mass);$i++):
if($max<$mass[$i+1]):
$max=$mass[$i+1];
endif;
endfor;
echo $max;
endif; ?>
if(isset($_POST['pol'])):
$mass=$_POST['pol'];
$max=$mass[0];
for($i=0;$i<count($mass);$i++):
if($max<$mass[$i+1]):
$max=$mass[$i+1];
endif;
endfor;
echo $max;
endif; ?>
Код:
<form action="<?=$_SERVER['PHP_SELF']?>" method="post">
<input type="checkbox" name="pol[]" value="15000">Матрешка</input><br/>
<input type="checkbox" name="pol[]" value="20000">Заяц</input><br/>
<input type="checkbox" name="pol[]" value="5000">Волк</input><br/>
<input type="submit" value="Send" />
</form>
<input type="checkbox" name="pol[]" value="15000">Матрешка</input><br/>
<input type="checkbox" name="pol[]" value="20000">Заяц</input><br/>
<input type="checkbox" name="pol[]" value="5000">Волк</input><br/>
<input type="submit" value="Send" />
</form>
Код:
<form method="post">
<input type="text" name="n1"/>
<input type="text" name="n2"/>
<input type="text" name="n3"/>
<input type="submit" name="ok" value="OK">
</form>
<input type="text" name="n1"/>
<input type="text" name="n2"/>
<input type="text" name="n3"/>
<input type="submit" name="ok" value="OK">
</form>
Код:
<?php
$l1=$_POST['n1'];
$l2=$_POST['n2'];
$l3=$_POST['n3'];
$result=?????;
?>
$l1=$_POST['n1'];
$l2=$_POST['n2'];
$l3=$_POST['n3'];
$result=?????;
?>
Самое простое, что приходит в голову:
Код:
$result = ($l1 > $l2) ? $l1 : $l2;
$result = ($result > $l3) ? $result : $l3;
$result = ($result > $l3) ? $result : $l3;