DIR : /home/kozerus/public_html/eidogo/backend/download.php
/home/kozerus/public_html/eidogo/backend
<?php
$id = $_GET['id'];
$id = preg_replace("/[^a-zA-Z-_0-9]/", "", $id);
header("Content-Type: application/x-go-sgf; name=$id.sgf");
header("Content-Disposition: attachment; filename=$id.sgf");
if (file_exists("../sgf/$id.sgf")) {
echo file_get_contents("../sgf/$id.sgf");
} elseif (file_exists("../sgf/games/$id.sgf")) {
echo file_get_contents("../sgf/games/$id.sgf");
} elseif (file_exists("../sgf/saved/$id.sgf")) {
echo file_get_contents("../sgf/saved/$id.sgf");
}
?>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer