Hello.
I want to return the result of an operation using two numbers and the operator as the parameter. It turns out that my result is a string.
<?php
$n1 = $_POST['n1']; //primeiro número
$n2 = $_POST['n2']; //segundo número
$operador = $_POST['operador']; // +-*/
$resultado = fazConta($n1,$n2,$operador);
echo $resultado;
function fazConta($n1,$n2,$operador){
$x = $n1.$operador.$n2;
return $x;
}
?>
In the example above, it returns the operation, not the result. Example: "3 + 2" not "5".