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
- require_once '../st-xm/Common/Mysql.php';
- header("Access-Control-Allow-Origin:*");
- $pdo=conn();
-
- //取得所有有效车信息
- $sql1=" CALL sp_transfer_expired_runx()";
- $result=$pdo->query($sql1);
- if( $result == false ) {
- echo "move failed";
- } else {
- echo "move success";
- }
- $result->closeCursor();
- exit();
-
-
-
-
-
|