Posts by Rafael Meira • 1 point
1 post
-
-1
votes1
answer66
viewsA: Perform external value calculations ($_GET)
You can do it this way. Exercise 1 $num1 = $_GET['num1']; $num2 = $_GET['num2']; if(($num1 != null) AND ($num2 != null)){ $result = $num1 + $num2; echo "o resulto da soma dos números é: $result";…