Happy Coding
In index.php
<form method="post" action="process.php" >
Firstname: <input type="text" name="firstname" />
<br />
Lastname: <input type="text" name="lastname" />
<br />
Add input type description:
Description: <textarea name="description" rows="10" cols="50"></textarea>
<br />
<hr />
<input type="submit" name="submit" value="Submit" />
</form>
In process.php
echo "<pre>";
var_dump($_POST);
Top comments (0)