Jump to content

pezkingrich2

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Posts posted by pezkingrich2

  1. I\'m trying to add one to the \'comment count\' when someone submits a comment! The sql error i get is:

    You have an error in your SQL syntax near \'INSET INTO users (comments) VALUES (\'7\') WHERE username=\'Rich\'\' at line 1

     

    Code:

    $get_comment = mysql_query(\"SELECT comments FROM users WHERE username=\'$username\'\") or die(mysql_error());

    $new_comment = $get_comment++;

     

    mysql_query(\"INSET INTO users (comments) VALUES (\'\".$new_comment.\"\') WHERE username=\'$username\'\") or die(mysql_error());

    echo \"Comment entered. Thanks!<BR>n\";

     

     

     

    The comment value is stored in the databse as an INTEGER. I tried echoing the values, for $new_comment i get \'7\' and for $get_comment i get \'Resource id #6\' . Ahh wht am i doing wrong?! (i manually entered the value 5 for comments).

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