1

どういうわけか、私のものは私のデータベースに挿入されていません、そして私はそれを何度も見落としてきました。

AJAXハンドラー:

<?php
require_once('../../blog/inc/config.php');

$form_name = htmlspecialchars($_GET['form_name']);
$form_commentid = $_GET['form_commentid'];
$date = date('M jS Y | g:i a T');
$ip = $_SERVER['REMOTE_ADDR'];

 if($form_name == '') {
    echo("Name");

} else if($form_commentid == '') {
    echo("Comment ID");

} else {
mysql_query("INSERT INTO reportcomment (id, name, commentid, date, ip) VALUES     (NULL,'{$_GET['id']}','{$form_name}','{$form_commentid}','{$date}','{$ip}')");

    // output comment
    echo "success brah";
}
?>

Reporting.phpファイル:

<script type="text/javascript">
$(function() {

 $('#reset_form').click(function() {
 $('#name,#commentid').val('');
 });
 $('#submit').click(function() {

var name = $('#name').val();
var commentid = $('#commentid').val();

$.ajax({
url: '../../_lib/forms/report_ajax.php?id=<?php echo $_GET['id']; ?>',
data: { form_name: name, form_commentid: commentid },
success: function(data) {
    $('#report_comment').append(data);
    $(document).trigger('close.facebox');
}
});
});
});
</script>


      Name: <br />
      <input type="text" id="name" class="userpass"/>

      <input  type="text" id="commentid" class="userpass""/>


      <input type="submit" id="submit" value="Report" class="button" />
  <input type="reset" id="reset_form" name="submit" value="Reset" class="button" />

また、faceboxを使用してreporting.phpファイルを開きます。

これは私のSQLテーブルですhttp://screensnapr.com/v/2pZMN7.png

私は自分が間違っていることが何であるかを真剣に知りません。誰か助けてもらえますか?

4

1 に答える 1

3

5列のテーブルに6つの値を挿入しようとしています

INSERT INTO reportcomment(id、name、commentid、date、ip)VALUES
                            1 2 3 4 5
  (NULL、'{$ _GET ['id']}'、'{$ form_name}'、'{$ form_commentid}'、'{$ date}'、'{$ ip}') ")
      1 2 3 4 5 6

NULL値を削除します

于 2012-12-02T04:37:42.903 に答える