home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Neil's C++ Stuff
/
2006-05-neilstuff_com.iso
/
index.php
< prev
next >
Wrap
PHP Script
|
2006-05-22
|
340b
|
20 lines
<?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");
?>