home *** CD-ROM | disk | FTP | other *** search
/ Neil's C++ Stuff / 2006-05-neilstuff_com.iso / index.php < prev    next >
PHP Script  |  2006-05-22  |  340b  |  20 lines

  1. <?php
  2.  
  3.     // TODO: translate 'p' parameter into correct redirect
  4.  
  5.     $p = @$_GET['p'];
  6.  
  7.     switch ($p)
  8.     {
  9.         case 1:
  10.             header("Location: http://www.neilstuff.com/cpp/");
  11.             exit;
  12.  
  13.         case 36:
  14.             header("Location: http://www.neilstuff.com/guide_to_c++/");
  15.             exit;
  16.     }
  17.  
  18.     header("Location: http://www.neilstuff.com/index.htm");
  19.  
  20. ?>