Mysql Query在编辑的jTable代码中不起作用,为什么?

时间:2012-09-15 15:23:55

标签: php jquery mysql ajax jquery-jtable

我正在使用此示例: www.jtable.org

我已经下载了jTable PHP版本。然后我编辑了脚本。 jTable简易版正在运行,但我的已修改版本不是

我可以创建一个列表,但是我不能添加一行;这段代码导致了问题。但是,PHP不会显示任何错误消息。

else if($_GET["action"] == "create")
{
    //Insert record into database
    $result = mysql_query("INSERT INTO veriler(bolge, sehir, firma, adres, tel, web) VALUES('" . $_POST["bolge"] . "', '" . $_POST["sehir"] . "', '" . $_POST["firma"] . "', '" . $_POST["adres"] . "', '" . $_POST["tel"] . "', '" . $_POST["web"] . "'");

    //Get last inserted record (to return to jTable)
    $result = mysql_query("SELECT * FROM veriler WHERE id = LAST_INSERT_ID();");
    $row = mysql_fetch_array($result);


    //Return result to jTable
    $jTableResult = array();
    $jTableResult['Result'] = "OK";
    $jTableResult['Record'] = $row;

    print json_encode($jTableResult);
}

有什么问题?

3 个答案:

答案 0 :(得分:10)

在这一行中,存在一个问题:

$result = mysql_query("INSERT INTO veriler(bolge, sehir, firma, adres, tel, web) VALUES('" . $_POST["bolge"] . "', '" . $_POST["sehir"] . "', '" . $_POST["firma"] . "', '" . $_POST["adres"] . "', '" . $_POST["tel"] . "', '" . $_POST["web"] . "'");

INSERT查询的格式为:

INSERT INTO table (column1, column2, etc) VALUES (value1, value2, etc);

您错过了VALUES部分的右括号。

要改进代码,您可以执行以下操作:

$result = mysql_query("YOUR QUERY") or die('ERROR: '.mysql_error());

请阅读SQL Injection

答案 1 :(得分:3)

这是您忘记)

的问题
 $result = mysql_query("INSERT INTO veriler(bolge, sehir, firma, adres, tel, web) 
                       VALUES('" . $_POST["bolge"] . "', '" . $_POST["sehir"] . "', '" . $_POST["firma"] . "', '" . $_POST["adres"] . "', '" . $_POST["tel"] . "', '" . $_POST["web"] . "'");

使用

$result = mysql_query("INSERT INTO veriler(bolge, sehir, firma, adres, tel, web) VALUES
                         ('{$_POST["bolge"]}', '{$_POST["sehir"] }' , '{$_POST["firma"]}' , '{$_POST["adres"] }', '{$_POST["tel"]}', '{$_POST["web"]}' )" ) ;

答案 2 :(得分:2)

首先,您可以减少last_inset_id()

的一个查询
else if($_GET["action"] == "create")
{
    //Insert record into database
    $result = mysql_query("INSERT INTO veriler(bolge, sehir, firma, adres, tel, web) VALUES('" . $_POST["bolge"] . "', '" . $_POST["sehir"] . "', '" . $_POST["firma"] . "', '" . $_POST["adres"] . "', '" . $_POST["tel"] . "', '" . $_POST["web"] . "'"));
//Get last inserted record (to return to jTable)
//check youe result query you are missing something here
$id=mysql_insert_id();
//this will automatically give you last id 

//Return result to jTable
$jTableResult = array();
$jTableResult['Result'] = "OK";
$jTableResult['id'] = $id;
$jTableResult['Record'] = $row;
$jTableResult['aderes'] = $_POST['adres'];
//and so on 
print json_encode($jTableResult);

}