Lambneck Posted September 22, 2008 Share Posted September 22, 2008 is there a way to make it so the details of a form submission will not be entered into a database until an email (sent to user when form is submitted) with a verification link is clicked by the user? Link to comment https://forums.phpfreaks.com/topic/125375-solved-form-security/ Share on other sites More sharing options...
waynew Posted September 22, 2008 Share Posted September 22, 2008 Add a column to your table called status (for example). Set it to TINYINT(1) 0 if not confirmed. 1 if confirmed. Link to comment https://forums.phpfreaks.com/topic/125375-solved-form-security/#findComment-648188 Share on other sites More sharing options...
CroNiX Posted September 22, 2008 Share Posted September 22, 2008 Not really. I suppose you could always output the data to a text file or something. You could do as waynewex suggested, thats pretty standard. Why wouldn't you want to store the data in your db until confirmation? Link to comment https://forums.phpfreaks.com/topic/125375-solved-form-security/#findComment-648195 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.