Commit 4314e6c3 by 冷斌

update

parent 59d07c91
......@@ -85,7 +85,9 @@ if($trade_status == 'TRADE_FINISHED') {
mysqli_query($link,"set names utf8");
$result = mysqli_query($link,"select * from cmf_users_charge where orderno='$out_trade_no' and status='0' and type='1'");
$row = mysqli_fetch_row($result);
var_dump($row, mysqli_fetch_assoc($result));
$row1 = mysqli_fetch_array($result);
$row2 = mysqli_fetch_assoc($result);
var_dump($row, $row1, $row2);
die;
$str = json_encode($row);
if($row){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment