I have this assignment. I'm supposed to make two text fields where i will write two numbers and add them in another page
<html>
<head>
<title>Test</title>
</head>
<body>
<form method="post" action="page2.php">
<input type="text" name="num1">
<br><input type="text" name="num2">
<input type="submit" value="OK">
</form>
what's the php script for page2?
<html>
<head>
<title>Test</title>
</head>
<body>
<form method="post" action="page2.php">
<input type="text" name="num1">
<br><input type="text" name="num2">
<input type="submit" value="OK">
</form>
what's the php script for page2?