You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /*
- Author:XM
- Compeny:Spiders Travel
- */
- require_once __DIR__.'/../Common/Mysql.php';
- $pdo=conn();
- if(is_object($pdo)){
- $sql="CALL HT_CHECK_ORDER_PREPAID_TIME(1)";
- $result=$pdo->query($sql);
- $rowset=$result->fetchAll(PDO::FETCH_ASSOC);
- }
- if (is_array($rowset)){
- writeLog("check_order_prepaid_time.php HT_CHECK_ORDER_PREPAID_TIME(1)::".json_encode($rowset));
- }
- exit;
|