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
}

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

Archived

This topic is now archived and is closed to further replies.

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