ryanfilard Posted June 8, 2011 Share Posted June 8, 2011 How do I make a verify script for my website. After a user registers they have to verify via email link https://www.ryanweekly.com/register.php Link to comment https://forums.phpfreaks.com/topic/238742-verify-script/ Share on other sites More sharing options...
fugix Posted June 8, 2011 Share Posted June 8, 2011 you'll want to validate user input. then incorporate the mail() function into your script to send an email with a verification link. Set it up so when the use clicks on the link, there account will be verified. you can do this by setting a field in your database that stored your member information, set it as an int with a default value of 0. When the verification link is clicked, have the int in your db set to 1 which will give them access to log-in Link to comment https://forums.phpfreaks.com/topic/238742-verify-script/#findComment-1226793 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.