View Single Post
  #2  
Old 12-22-2005, 09:27 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,974

Code:
<?
$id=$_GET['id'];

If(eregi("^[A-Za-z0-9_-]+$",$id) AND file_exists("./pagecontent/".$id.".php")) {
	
	include("./pagecontent/".$id.".php");
	
} Else {
	
	echo "file dosen't exist";
	
}
?>
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq

Last edited by Scott; 12-22-2005 at 11:34 AM.
Reply With Quote