English 中文(简体)
Paypal IPN 脚本 / MySql 插入查询问题
原标题:Paypal IPN Script / MySql Insert Query issue

I m having an issue with my IPN script. Its fine for verifying payment etc but im trying to get it to input the data into a database. The user email and password entry prior to works fine but not the second one..

$item_name = $_POST[ item_name ];
$item_number = $_POST[ item_number ];
$payment_status = $_POST[ payment_status ];
$payment_amount = $_POST[ mc_gross ];
$payment_currency = $_POST[ mc_currency ];
$txn_id = $_POST[ txn_id ];
$receiver_email = $_POST[ receiver_email ];
$payer_email = $_POST[ payer_email ];

$email = $_POST[ item_name ];
$password = mt_rand(1000, 9999);
$Random = print_r($_POST);


mysql_query("INSERT INTO users (email, password) VALUES( ". mysql_escape_string($email)     ." ,  ".md5($password)." ) ") or die(mysql_error()); 

mysql_query("INSERT INTO LNCH_Sales SET
                                                            item_name =  %s ,
                                                            item_number =  %s ,
                                                            payment_status =  %s ,
                                                            payment_amount =  %s ,
                                                            payment_currency =  %s ,
                                                                txn_id =  %s ,
                                                            receiver_email =  %s ,
                                                            payer_email =  %s ",
                                                            mysql_real_escape_string($item[ name ]),
                                                            mysql_real_escape_string($item[ number ]),
                                                            mysql_real_escape_string($payment[ status ]),
                                                            mysql_real_escape_string($payment[ amount ]),
                                                            mysql_real_escape_string($payment[ currency ]),       
                                                            mysql_real_escape_string($txn[ id ]),
                                                            mysql_real_escape_string($receiver[ email ]),
                                                            mysql_real_escape_string($payer[ email ])

                                                                      );

有什么想法吗? 这里有什么问题?

问题回答

您的语法错误 - 而不是

INSERT INTO LNCH_SALES SET

(这看起来像 INSERT 和 UDATE 之间的混合混合物),您需要

INSERT INTO LNCH_SALES(<column_list>) VALUES (...

@FrankSchmitt说,

您可以跳过列列表的唯一方法是,如果插入列的数 = 与表格列的数相同,则一.E:

jcho360> create table test (id int,name varchar(20));
Query OK, 0 rows affected (0.05 sec)

jcho360> insert into test values (1, Jcho360 );
Query OK, 1 row affected (0.00 sec)

jcho360> insert into test values (1);
ERROR 1136 (21S01): Column count doesn t match value count at row 1

jcho360> insert into test(id) values (1);
Query OK, 1 row affected (0.01 sec)

正如你所见,只有我准备去填充“插入”中的所有列, 你才能跳过列列表 。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签