mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
10 lines
331 B
PHP
10 lines
331 B
PHP
<?php
|
|
|
|
if(isset($_GET['uid'])) {
|
|
header("Location: http://valar.technikum-wien.at:8080/InfoTerminal/wap?uid=" . $_GET['uid'] );
|
|
header("Content-type: text/vnd.wap.wml");
|
|
} else {
|
|
header("Location: http://valar.technikum-wien.at:8080/InfoTerminal/wap");
|
|
header("Content-type: text/vnd.wap.wml");
|
|
}
|
|
?>
|