Curl不会更新数据库

时间:2015-11-04 06:21:50

标签: php curl

我正在尝试使用离线版本更新我的在线数据库。执行以下代码时不会给出错误代码,但未显示预期结果。任何帮助将非常受欢迎,因为谷歌搜索系列被证明是无效的。

 <?php
 include("inc_files/inventory.php");
 // update sales_rec records

 $get_sales_rec = mysql_query("SELECT * FROM sales_rec WHERE status = '0'      ORDER BY id ASC") or die(mysql_error());
 while($rec = mysql_fetch_array($get_sales_rec)){
 $id = $rec['id'];
 $receipt = $rec['receipt'];
 $customer = $rec['customer'];
 $total = $rec['total'];
 $amount = $rec['amount'];
 $balance = $rec['balance'];
 $discount = $rec['discount'];
 $date = $rec['date'];
 $time = $rec['time'];
    ? $type = "sales_rec";
 $ch = curl_init();   // initiate curl
 $url = "http://www.sample.com/inventory/test.php"; // where you want to post data
 curl_setopt($ch, CURLOPT_URL,$url);
 curl_setopt($ch, CURLOPT_POST, true);  // tell curl you want to post something
 curl_setopt($ch, CURLOPT_POSTFIELDS, "type=$type&r=$receipt&c=$customer&t=$total&a=$amount&b=$balance&d=$discount&dt=$date&ti=$time"); // define what you want to post
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // return the output in string format
 $output = curl_exec ($ch); // execute
 curl_close ($ch); // close curl handle
  }
 ?>

1 个答案:

答案 0 :(得分:0)

您是否尝试过传递数组

$data = array('name' => 'aaa', 'title' => 'dev');
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);