velden bewaren in een formulier
Ik heb een uitgebreid formulier gemaakt (HTML - PHP) method post dewelke gaat naar een 2 de pagina voor foutencontrole en verwerking (mailen en wegschrijven naar de database).
Dit werkt goed, alleen als er een foutmelding komt en ik wil terugkeren naar het formulier krijg ik alles leeg terug.
Hoe kan ik dit verhelpen?
Graag concreet aub ben echt wel een beginner.
Johan
Kan je eens je html code posten?
Hier een (stuk) van de html uit mijn formulier.
<tbody>
<tr>
<td style="width: 182px;">
<span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">Naam</span>* </span>
</td>
<td style="width: 615px;">
<span style="font-size: 10pt; line-height: 150%;"><font size="+1"><input name="naam" input=""></font></span></td>
</tr>
<tr>
<td><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">Voornaam* :</span></span></td>
<td><input name="voornaam"></td>
</tr>
<tr>
<td style="width: 182px;"><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">Straat en nummer*:</span> </span></td>
<td style="width: 615px;"><span style="font-size: 10pt; line-height: 150%;"><input name="adres" input=""></span></td>
</tr>
<tr>
<td><small><span style="font-weight: bold;">postcode*</span></small></td>
<td><input maxlength="4" size="4" name="postcode"></td>
</tr>
<tr>
<td><small><span style="font-weight: bold;">Gemeente*</span></small></td>
<td><input name="gemeente"></td>
</tr>
<tr>
<td style="width: 182px;"><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">Geslacht* : </span><span style=""> </span></span></td>
<td style="width: 615px;"><span style="font-size: 10pt; line-height: 150%;"><span style="">
<select name="geslacht">
<option selected="selected">maak uw keuze</option>
<option>man</option>
<option>vrouw</option>
</select>
</span></span></td>
</tr>
<tr>
<td><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">email*:</span>
</span></td>
<td><span style="font-size: 10pt; line-height: 150%;"><input name="mail" input=""></span></td>
</tr>
<tr>
<td style="width: 182px;"><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">Telefoonnummer:</span>
</span></td>
<td style="width: 615px;"><span style="font-size: 10pt; line-height: 150%;"><input name="telefoon" input="" type="text"></span></td>
</tr>
<tr>
<td style="width: 182px;"><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">GSM-nummer:</span>
</span></td>
<td style="width: 615px;"><span style="font-size: 10pt; line-height: 150%;"><input name="GSM" input="" type="text"></span></td>
</tr>
<tr>
<td style="width: 182px;"><span style="font-size: 10pt; line-height: 150%;"><span style="font-weight: bold;">geboortedatum*:</span>
</span></td>
<td style="width: 615px;"><span style="font-size: 10pt; line-height: 150%;"><input name="geboortedatum" input="" type="text"></span></td>
</tr>
</tbody>