2020.02新版
This commit is contained in:
18
getshop.php
Normal file
18
getshop.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
$nosession = true;
|
||||
require './includes/common.php';
|
||||
|
||||
$type=isset($_GET['type'])?daddslashes($_GET['type']):exit('No type!');
|
||||
$trade_no=isset($_GET['trade_no'])?daddslashes($_GET['trade_no']):exit('No trade_no!');
|
||||
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
|
||||
$row=$DB->getRow("SELECT * FROM ".DBQZ."_order WHERE trade_no='{$trade_no}' limit 1");
|
||||
if($row['status']>=1){
|
||||
$url=creat_callback($row);
|
||||
exit('{"code":1,"msg":"付款成功","backurl":"'.$url['return'].'"}');
|
||||
}else{
|
||||
exit('{"code":-1,"msg":"未付款"}');
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user