Hello,
I would like to give my clients the chance to check and change their data before they submit them to me.
For example:
form1-html
form1-php
*********************************************************
So now I get the result as an email, but I would like to be able to change the numbers,
before I send the email.
Thank you very much!
Alexander
I would like to give my clients the chance to check and change their data before they submit them to me.
For example:
form1-html
<center>
<input type="text" size="17" name="text">
<br><br>
<center>
<input type="text" size="17" name="text1">
<br><br>
<center>
<input type="submit" value="OK">
</center>
form1-php
<?php
$zahl1 = $_POST["text"] ;
$zahl2 = $_POST["text1"] ;
?>
<br><br><br>
<?php
$addition = $zahl1 + $zahl2;
$subtraktion = $zahl1 - $zahl2;
$multiplikation = $zahl1 * $zahl2;
$division = $zahl1 / $zahl2;
?>
*********************************************************
So now I get the result as an email, but I would like to be able to change the numbers,
before I send the email.
Thank you very much!
Alexander