Hello and thank you.
I have this code but, what is the way to compare the strings the if email was wrong just lift the info there but if right write it in db.
Thank for any help.
<tr>
<td width="20%">Email:</td>
<td width="80%"><input name="email" type="text" size=45 maxlength=80 value="<?if (isset($email)) print $email; ?>"></td>
</tr>
<tr>
<td width="20%">Confirm Email:</td>
<td width="80%"><input name="email_again" type="text" size=45 maxlength=80 ></td>
</tr>
<tr>
<td> </td>
<td>
<input type="hidden" name="e_id" value="<?if (isset($REQUEST['e_id'])) print $REQUEST['e_id']?>">
<input type="submit" name="submit" value="Send Email"></td>
</tr>