12 lines
309 B
PHP
12 lines
309 B
PHP
<?php
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
$file = "placeinformation.json";
|
|
$json = json_decode(file_get_contents($file),true);
|
|
foreach ($json as $row) {
|
|
|
|
if ($row["iid"] == 3) {
|
|
echo "<a href=\"http://141.43.76.140:8080/p/".$row["pid"]."\">".$row["value"]."</a><br>";
|
|
}
|
|
}
|
|
?>
|