Files
geodb/geoapi/insert/showallRooms.php
2013-08-14 15:05:29 +02:00

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>";
}
}
?>