well , it is kinda easy to add
here are the codes
Code:
<TD class="Label" align="right" height="32">
<p align="left"><b><font color='red'>Email:</font></b></TD>
<TD class="it3" height="32">
<input class="it" onkeypress="return pulsar(event,this)" id="email" style="FONT-SIZE: 9pt; font-weight:700" type="email" maxlength="24" name="email"></TD>
</tr>
and this is the script code
Code:
$email = trim($_POST['email']);
Code:
mysql_query("insert into account (name,Password,Reg_date,Email) values ('".$userid."','".$hash."','".date("y-m-d H:i:s", time())."',".$email.")");
please note , the above code is a example of how you can add it
it is not checked and not 100% sure that it will work with those values
but that is the way of how you need to add it
Greets From PowerChaos