It looks like you're using an Ad Blocker.
Please white-list or disable AboveTopSecret.com in your ad-blocking tool.
Thank you.
Some features of ATS will be disabled while you continue to use an ad-blocker.
page one:
< form action= "page2.php" >
First number< input type="text" name="Add1" > < br >
Second number < input type="text" name="Add2" > < br >
< input type="submit" value="add_numbers">
< /form >
page two
< ? php
$variable1= $_POST["Add1"];
$variable2= $_POST["Add2"];
$answer = $variable1 + $variable2;
echo $answer;
? >