This script will send the information submitted in the 'Name' and 'Age' box to the 'interactive_form_welcome.php' page.
Fields could be amended or added to to increase the accumulation of data.
<fieldset><legend>Please enter your details</legend>
<form method="post" action="interactive_form_welcome.php">
<p class="inside">Name:</p> <input type="text" name="name" />
<p class="inside">Age:</p> <input type="text" name="age" /><br />
<input type="submit" value="Submit" />
<input type="reset" />
</form></fieldset><!--Start of group-->
<!--Title of group-->
<!--Where to send the info-->
<!--Define field as `name`-->
<!--Define field as `age`-->
<!--Submit button-->
<!--Reset button-->
<!--Close form-->
<!--Close group-->