jmgarde Posted December 4, 2008 Share Posted December 4, 2008 Can anyone help me how to alert the user when they try to enter a duplicate entry in the database using PHP, MySQL and Dreamweaver or anything. Im working on a website that can have only one comment per user. Please help. id be thankful. Quote Link to comment https://forums.phpfreaks.com/topic/135477-help-newbie-over-here/ Share on other sites More sharing options...
GingerRobot Posted December 4, 2008 Share Posted December 4, 2008 You need to search your database to find out the number of posts by that user prior to inserting the data. Something like: $sql = "SELECT COUNT(*) FROM yourtable WHERE username='$name'"; $result = mysql_query($sql) or trigger_error(mysql_error(),E_USER_ERROR); $num = mysql_result($result,0); if($num > 0){ //dont insert give use error message }else{ //insert the comment into the database } Quote Link to comment https://forums.phpfreaks.com/topic/135477-help-newbie-over-here/#findComment-705802 Share on other sites More sharing options...
jmgarde Posted December 6, 2008 Author Share Posted December 6, 2008 thnks.. but i was looking for something like... the user enters the name of the person he want to add a comment to by using a text box and a comment box on the website, when he/she clicks the submit comment button if the name already exists, a message box will appear, notifying him that the name he entered already has a comment.. please help... Quote Link to comment https://forums.phpfreaks.com/topic/135477-help-newbie-over-here/#findComment-707441 Share on other sites More sharing options...
OldWolf Posted December 6, 2008 Share Posted December 6, 2008 What he posted would do just that... you just need to apply the form before it, and then collect the name out of the submitted post and set it to the $name var. Quote Link to comment https://forums.phpfreaks.com/topic/135477-help-newbie-over-here/#findComment-707446 Share on other sites More sharing options...
fanfavorite Posted December 6, 2008 Share Posted December 6, 2008 $q = mysql_query("SELECT * FROM tablename WHERE Name = '$_POST[name]'"); if ($mysql_num_rows($q) != 0) { $message = "The name has already been used."; } else { //submit comment } Quote Link to comment https://forums.phpfreaks.com/topic/135477-help-newbie-over-here/#findComment-707448 Share on other sites More sharing options...
jmgarde Posted December 8, 2008 Author Share Posted December 8, 2008 Thanks a lot guys..i tried it and it really helped a lot Quote Link to comment https://forums.phpfreaks.com/topic/135477-help-newbie-over-here/#findComment-709278 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.