Hello,

This form is really giving me a fight.

I am connected to the database, yet it won't submit, Is the form and
$_POST's Okay?

echo "
     <form name=\"sendform\" action=\"report.php\" method=\"post\">
     reason: <br>
  <textarea name=\"reason\" cols=\"50\" rows=\"3\"></textarea>
  <br/><br/>
     <input type=\"submit\" name=\"report\" value=\"mark for moderation\">
     </form>";

if($_POST[reason]) {
 $result = $db->sql("INSERT INTO comments (reported, reportedby, reason)
VALUES ('1', '$username', '$_POST[reason]') WHERE id = '$id'");

  if($result) {
   echo "<center>message sent to moderators.<br/><a
href=\"$_SERVER[HTTP_REFERER]\">return to your previous page</a>.</center>";

   }
}


cheers,
- Sebastian


Reply via email to