Jump to content

Help!! newbie over here!!


jmgarde

Recommended Posts

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
}

Link to comment
Share on other sites

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...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.