dl/htdocs/old/index.php
2020-06-17 20:49:28 +02:00

27 lines
489 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="format-detection" content="telephone=no" />
<title>Haltebord lite</title>
<style>
@import url('haltebord.css');
</style>
</head>
<body>
<?php
require('./main.php');
$stopRef = '506415';
if (isset($_GET['h'])) {
$stopRef = $_GET['h'];
}
$infoboard = new StopInfoboard($stopRef);
$infoboard->make();
?>
</body>
</html>