home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- // TODO: translate 'p' parameter into correct redirect
-
- $p = @$_GET['p'];
-
- switch ($p)
- {
- case 1:
- header("Location: http://www.neilstuff.com/cpp/");
- exit;
-
- case 36:
- header("Location: http://www.neilstuff.com/guide_to_c++/");
- exit;
- }
-
- header("Location: http://www.neilstuff.com/index.htm");
-
- ?>