How can I make the value of the first input text (number) disappear when I use the reset button as part of the following form:
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="get">
<input type="text" name="number" value="<?php echo $result;?>">
<input type="submit">
<input type="reset">
<p name="result">The result is: <?php echo $result; ?> </p>
</form>