Thread: in progress
View Single Post
  #15  
Old 04-15-2005, 02:31 PM
prey is offline prey
Registered User

Join Date: Mar 2004
Posts: 119

Send a message via ICQ to prey
that still lets you enter ../../ and such


here's one way to do it
PHP Code:
$page_name '';
$page_ext '.php';
$valid_pages = Array(
'home',
'members',
'contact'
);

$default_page 0;

if (isset(
$_GET['id']) && trim($_GET['id']) != '' && in_array($_GET['id'],$valid_pages))
{
    
$page_name addslashes(htmlentities(trim($_GET['id'])));

    include(
$page_name.$page_ext);
}else{
    include(
$valid_pages["$default_page"].$page_ext);

__________________
http://addf.net
http://som.addf.net
http://snmservers.com
http://snmfuturedomination.com
-------------------------------------
but there it's a different movie
she stares into the screen
and fantasies enter her
harder than all those who will get to know her

Last edited by prey; 04-15-2005 at 02:37 PM.
Reply With Quote