View Single Post
Old 10-18-2004, 05:38 AM   #3 (permalink)
gamehead200
Code Monkey
 
gamehead200's Avatar
 
Join Date: Oct 2004
Posts: 57
gamehead200 is an unknown quantity at this point
Something like this?

PHP Code:
<?php

$p 
$_GET['p'];
$p "css/$p.txt";

if( 
file_exists($p) )
{
    include(
$p);
}
else
{
    echo(
'AN ERROR HAS OCCURRED!');
}

?>
gamehead200 is offline   Reply With Quote