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
- /**
- * Created by luocj.
- * User: Administrator
- * Date: 2016/8/10
- * Time: 9:54
- */
-
- require_once '../st-xm/Common/Mysql.php';
- header("Access-Control-Allow-Origin:*");
- $pdo=conn1();
-
- //取得所有车信息
- $sql1=" select * from base_resource where res_type_id =70";
- $result=$pdo->query($sql1);
- $result_array=$result->fetchAll();
- $result->closeCursor();
- $info_array=array();
- print_r($result_array);
|