PHP mysql_query()无法查询sql请求

时间:2013-08-20 14:23:49

标签: php javascript mysql

这是我的SQL声明:

UPDATE approved_student SET barcode='11',phone='11',table_name='2',remark='' WHERE
studentid='5230010'; UPDATE approved_student SET 
barcode='22',phone='22',table_name='2',remark='' WHERE studentid='5230009';  

使用SQL执行PHP不会产生预期的结果。

PHP来源:     

mysql_connect("localhost","root","1234"); //connect database
mysql_select_db("lasto");//select name of the database

if($sql=mysql_query($data1)){
    echo 1;
}else{
    echo $data1;
}

mysql_close();

我使用SQL发送了POST,但它不起作用。

1 个答案:

答案 0 :(得分:6)

你只能使用mysql_query()执行一个命令,你应该看一下使用mysqli或PDO。

mysql_query("UPDATE approved_student SET barcode='11',phone='11',table_name='2',remark='' WHERE
studentid='5230010'"); 

...

mysql_query("UPDATE approved_student SET 
barcode='22',phone='22',table_name='2',remark='' WHERE studentid='5230009'");