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
409 B
15 lines
409 B
<?php
|
|
date_default_timezone_set("Asia/Shanghai");
|
|
require_once "database.php";
|
|
if (!empty($_REQUEST["facilityno"])) {
|
|
$facilityno = $_REQUEST["facilityno"];
|
|
|
|
$sql = "SELECT * FROM fault_log where facilityno = '$facilityno'";
|
|
$data = mysqli_query($link, $sql);
|
|
$row = mysqli_fetch_array($data, MYSQLI_ASSOC);
|
|
echo json_encode($row);
|
|
}
|
|
mysqli_close($link); #代表结束连线
|
|
?>
|
|
|
|
|
|
|