我正在使用php从iphone发送数据到服务器它是从iphone发送数据但是没有插入mysql我正在使用以下php代码。
<?php
$con =
mysql_connect("surveyipad.db.6420177.hostedresource.com","tom","ben");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("surveyipad", $con);
$device_Id=$_POST['device_Id'];
$R1=$_POST['R1'];
$R2=$_POST['R2'];
$R3=$_POST['R3'];
$comment=$_POST['comment'];
$update_date_time=$_POST['update_date_time'];
$query=("INSERT INTO survey_responsese_pfizer (device_Id,R1,R2,R3,comment,update_date_time)
VALUES ('$device_Id','$R1','$R2','$R3','$comment','$update_date_time')");
mysql_query($query,$con);
printf("Records inserted: %d\n", mysql_affected_rows());
echo($device_Id)
?>
答案 0 :(得分:1)
好的,只能通过示例学习,停止使用mysql_functions(),它们不再被维护并且正式被弃用。在PHP 5.6中,它们很可能会被删除,从而导致代码损坏。
使用准备好的查询切换到PDO。 使用PDO的当前代码的端口:
<?php
// SQL Config
$config['sql_host']='surveyipad.db.6420177.hostedresource.com';
$config['sql_db'] ='surveyipad';
$config['sql_user']='tom';
$config['sql_pass']='ben';
// SQL Connect
try {
$db = new PDO("mysql:host=".$config['sql_host'].";dbname=".$config['sql_db'], $config['sql_user'], $config['sql_pass']);
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
}catch (Exception $e){
die('Cannot connect to mySQL server.');
}
// Check for POST, add isset($_POST['device_Id']) ect to add validations
if($_SERVER['REQUEST_METHOD']=='POST'){
// Build your query with placeholders
$sql = "INSERT INTO survey_responsese_pfizer
(device_Id,R1,R2,R3,comment,update_date_time)
VALUES
(:device_Id, :R1, :R2, :R3, :comment, :update_date)";
// Prepare it
$statement = $db->prepare($sql);
// Assign your vairables to the placeholders
$statement->bindParam(':device_Id', $_POST['device_Id']);
$statement->bindParam(':R1', $_POST['R1']);
$statement->bindParam(':R2', $_POST['R2']);
$statement->bindParam(':R3', $_POST['R3']);
$statement->bindParam(':comment', $_POST['comment']);
$statement->bindParam(':update_date', $_POST['update_date_time']);
// Execute the query
$statement->execute();
echo htmlspecialchars($device_Id);
}
?>
未经考验,希望有所帮助。