I need a script that will create text boxes from a drop down box. So If I choose 6 from the drop down box and "enter family details" I want 6 text boxes to be created in my form on the next page.
Thanks for any help lardy .Beginner
<html>
<head>
<title>Guest list pages!</title>
<form action="Guest List.php" method="GET">
<td>Number of family members<td><br>
<SELECT NAME="Number_of_family_members" SIZE="1">
<OPTION SELECTED>1
<OPTION>2
<OPTION>3
<OPTION>4
<OPTION>5
<OPTION>6
<OPTION>7
<OPTION>8
<OPTION>9
<OPTION>10
<OPTION>11
<OPTION>12
</SELECT>
<INPUT TYPE="submit" value="Enter family details">
</form>
<html>
<html>
<head>
<title>Guest list pages!</title>
<form action=".php" method="GET">
<table>
<tr><td>Förnamn: </td><td><input type="text" name="fornamn"></td></tr>
<tr><td>Efternamn: </td><td><input type="text" name="efternamn"></td></tr>
<tr><td>Address: </td><td><input type="text" name="address"></td></tr>
<tr><td>Postnummer: </td><td><input type="text" name="postnummer"></td></tr><br>
</table>
<INPUT TYPE="submit" value="Enter next family">
<INPUT TYPE="reset" value="Reset Form">
</form>
<html>