25 lines
483 B
PHP
25 lines
483 B
PHP
|
<?php
|
||
|
$nbr1=$_POST['op1'];
|
||
|
$nbr2=$_POST['op2'];
|
||
|
$ope=$_POST['operation'];
|
||
|
if ($ope=="+"){
|
||
|
$resultat=$nbr1+$nbr2;
|
||
|
echo "<h3> Le resultat est $resultat </h3>";
|
||
|
}
|
||
|
if ($ope=="-"){
|
||
|
$resultat=$nbr1-$nbr2;
|
||
|
echo "<h3> Le resultat est $resultat </h3>";
|
||
|
}
|
||
|
if ($ope=="x"){
|
||
|
$resultat=$nbr1*$nbr2;
|
||
|
echo "<h3> Le resultat est $resultat </h3>";
|
||
|
}
|
||
|
if ($ope=="/"){
|
||
|
if($nbr2==0){
|
||
|
die("<h2> Division par 0 </h2>");
|
||
|
}
|
||
|
$resultat=$nbr1/$nbr2;
|
||
|
echo "<h3> Le resultat est $resultat </h3>";
|
||
|
}
|
||
|
?>
|