-4
<form method="GET">
salário: <input type="number" name="salario"> <br>
tempo de serviço (em meses): <input type="number" name="tds"> <br>
n° reclamações: <input type="number" name="rec"> <br>
<input type="submit" name="calcular">
</form>
<?php
if (!empty($_GET["salario"]) && !empty($_GET["tds"]) && !empty($_GET["rec"])) {
$salario=$_GET["salario"];
$tds=$_GET["tds"];
$rec=$_GET["rec"];
$nsal=($salario*0.2);
if (($salario > 1000) && ($tds > 12) && ($rec == 0)) {
echo "Você foi promovido, parabéns.";
echo "E ganhou um aumento de salário. Seu novo salário é: $nsal";
} else{
echo "Sem novidades, volte depois.";
}
}
?>
Which values you are passing via the URL parameter?
– Valdeir Psr
I don’t understand your question
– Maria
What values of variables
$salario
,$tds
and$rec
?– Valdeir Psr
I’m taking them from an input, which the user himself puts
– Maria