难以处理从jQuery post到pg_query()的数据;

时间:2013-10-10 10:58:57

标签: php jquery html sql php-pgsql

遇到以下困难。

我正在创建一个表单。这个表单是用HTML制作的,由jQuery控制。

表格代码如下;

<div id="form">
        <form>
            <label>ID :</label>
            <input type="text" id="clientid" /><br /><br />
            <label>Name :</label>
            <input type="text" id="name" /><br /><br />
            <label>IP Address :</label>
            <input type="text" id="ipaddress"/><br /><br />
            <label>Status :</label>
            <input type ="text" id ="status" />
            <input type="button" id="button" value="Insert" /><br /><br /><br />
            <label id="response"></label>
        </form>

现在,此表单获取用户数据,并由以下jQuery脚本处理;

// Start jQuery script
// jQuery for dynamic adding without complete page reloads
//Wait for document readiness

$('document').ready(function() {
    // Define submit button and action
    $('#button').click(function() {

        // Assign variable
        if ($('#clientid').val() == "") {
            alert("Enter Client ID");
            return false;
        } else {
            var clientid = $('#name').val();
        }

        // Assign variable
        if ($('#name').val() == ""){
            alert("Enter Client full name");
            return false;
        } else {
            var name =$('#name').val();                        
        }

        // Assign variable
        if ($('#ipaddress').val() == "") {
            alert("Enter Client owned IP address");
            return false;
        } else {
            var ipaddress = $('#ipaddress').val();
        }

        // Assign variable
        if ($('#status').val() == "") {
            alert("Enter client status");
            return false;
        } else {
            var status = $('#status').val();
        }

        // When variables are known, continue processing and POST'ing
        // Posting to seperate PHP file to complete
        jQuery.post("processing/addC.php", {
            clientid: clientid,
            name: name,
            ipaddress: ipaddress,
            status: status
        },

        function(data, textStatus) {
            if (data == 1) {
                $('#response').html("Insert successful!");
                $('#response').css('color', 'green');
            } else {
                $('#response').html("Insertion failure. Please try again or restart.");
                $('#response').css('color', 'red');
            }
        });
    });
});

这段代码显然会通过POST将变量传递给addC.php。

addC.php包含以下代码:

<?php

// Get current connection
include 'dbconnect.php';

$clientid = $_POST['clientid'];
$name = $_POST['name'];
$ipaddress = $_POST['ipaddress'];
$status = $_POST['status'];

$query = pg_query_params(
  $dbconnection,
  'INSERT INTO clients(clientid, name, ipaddress,status) VALUES ($1, $2, $3, $4);', 
   array($clientid, $name, $ipaddress, $status)
);                         

if(pg_affected_rows($query)>0){
    echo "1";
}else{
    echo "2";
}

?>

此代码的所需结果是if语句返回1,因此jQuery可以创建一条漂亮的绿色消息,说明数据库插入正确。

现在,我验证了pg_query();语法是正确的,这段代码本身一定有问题。这里似乎有什么问题?

修改

以下错误; 警告:pg_query_params():查询失败:错误:整数的输入语法无效: /Applications/XAMPP/xamppfiles/htdocs/LoginHQ/processing/addC.php中的“michael”在线 18

1 个答案:

答案 0 :(得分:0)

invalid input syntax for integer: "michael"

这意味着列的类型为整数,但您尝试插入字符串