diff options
Diffstat (limited to 'www/index.php')
| -rw-r--r-- | www/index.php | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/www/index.php b/www/index.php index b43b2dc..436bfeb 100644 --- a/www/index.php +++ b/www/index.php @@ -1,5 +1,13 @@ -<!Doctype html> -<head> -<meta http-equiv="refresh" content="0; /youtube"> -</head> +<? +switch($_GET["task"]){ + case("youtube"): + include("youtube.php"); + break; + case("puush"): + include("puush.php"); + break; + default: + include("failure.php") + break; +} |
