Home › Forums › Programming › HELP ! How to Integrate hMail with the Signup Form
Tagged: email accounts creation, mysql, php
- This topic has 1 reply, 2 voices, and was last updated 12 years, 1 month ago by Satish.
- AuthorPosts
- August 22, 2012 at 1:57 pm#1908leezhijiangMember
I am running a Hmail server which is relying on mySQL for storing data . I noticed that accounts are stored in the table called hm_accounts. What is the code to register a new email address on my server by using the signup form.
_____________________________________________________________________________________________
Original signup.php
< ?php include_once("db.php"); ?>< ?php $user = $_POST['n']; $pass = $_POST['p']; $id = $_POST['id']; #$sql = "INSERT into phplogin values(".$id.",'".$user."','".$pass."')"; $sql = "INSERT into phplogin values($id,'$user','$pass')"; $qury = mysql_query($sql); # INSERT into phplogin values( # 1, # 'satish', # 'satish'); if(!$qury) { echo "Failed ".mysql_error(); echo "
SignUp";
echo "
SignIn";
}
else
{
echo "Successful";
echo "
SignUp";
echo "
SignIn";
}
?>
My Codes for Signup Form
< html >
< form action="signup.php" method="post" >
Desired [email protected](please complete with @chemistry.my:
< input type="text" name="accountaddress"/ >
Desired Password:< input type="password" name="accountpassword">
Account Id :< input type="text" name="accountid"/ >
< input type="submit"/>
< /form >
< /html >
The table created by hmail server in my mysql database( in xps form)http://www.mediafire.com/?2cdhgbr80gykfmm
Can someone please analyze all these information and tell me what should I change on “signup.php” and “signupform.php”
Thank You !
September 10, 2012 at 4:09 am#1995SatishKeymasterYou should modify the mysql to
$accountaddress = $_POST[‘accountaddress’];
$accountpassword = $_POST[‘accountpassword’];
INSERT into phplogin(‘accountaddress’, ‘accountpassword’) values($accountaddress,’$accountpassword’)Other fields:
You can auto-increment accountid.
Also implement email verification through this mechanism: https://technotip.com/1672/email-verification-in-php-part-1/
accountlevel has to be set.
and the email account creation set using now() function, and expiration set by admin or is preset for some predetermined period of time. - AuthorPosts
- You must be logged in to reply to this topic.