When filling out an HTML form, I put it to appear in PHP on the other page. However, when filling out the form the other page is called and the values are only in the URL and the echo is not shown on the page. Here is the code I used in HTML and PHP
<form method="get" action="p1.php">
Valor <input type="number" name="ds"/>
<input type="submit" value="Envie"/>
</form>
<?php
$valor = $_GET["ds"];
echo "O valor inserido é $valor";
?>