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.

auto_move_run_x.php 326 B

3 年之前
123456789101112131415161718192021
  1. <?php
  2. require_once '../st-xm/Common/Mysql.php';
  3. header("Access-Control-Allow-Origin:*");
  4. $pdo=conn();
  5. //取得所有有效车信息
  6. $sql1=" CALL sp_transfer_expired_runx()";
  7. $result=$pdo->query($sql1);
  8. if( $result == false ) {
  9. echo "move failed";
  10. } else {
  11. echo "move success";
  12. }
  13. $result->closeCursor();
  14. exit();