signup page
-
Hi .. I am having signup page that contains username,pwd,confpwd,Email,Address and one save button . when user enter his details and press save button it should save details in database. i have done upto here.But my problem is: if Email Entered already Exsists in database then it should display a message that Email already exists in Database.also i want to display email already exists errormsg in frontend label For this what i have to write Code .Pls send me the Code . Thank you..
-
Hi .. I am having signup page that contains username,pwd,confpwd,Email,Address and one save button . when user enter his details and press save button it should save details in database. i have done upto here.But my problem is: if Email Entered already Exsists in database then it should display a message that Email already exists in Database.also i want to display email already exists errormsg in frontend label For this what i have to write Code .Pls send me the Code . Thank you..
Simply write a stored procedure and pass email id as parameter. There select the email id where email id = sent email id. this way, if null is returned then means, email doesn't exists else it exists.