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.
15 lines
600 B
15 lines
600 B
<?php
|
|
|
|
require_once "../app/db/database.php"; # 載入db.php來連結資料庫
|
|
$data = array(); # 設置一個空陣列來放資料
|
|
$data_1 = array();
|
|
$sql = "select * from location_log order by upload_time desc limit 100"; # sql語法存在變數中
|
|
$data = mysqli_query($link,$sql); # 用mysqli_query方法執行(sql語法)將結果存在變數中
|
|
|
|
foreach($data as $data){
|
|
echo $data['id'] . "/" . $data['account_id'] . "/". $data['privatekey'] . "/". $data['name'] . "/" .
|
|
$data['pid'] . "/" . $data['latitude'] . "/" . $data['longitude'] . "/" . $data['upload_time'] . "/" . "<br>";
|
|
}
|
|
|
|
|
|
?>
|