View Single Post
Old 11-10-2004, 04:07 PM   #7 (permalink)
irseg
Junkie
 
Location: Florida
Is there any reason why you can't just pass the extension along as well? If it's only going to be a matter of jpg or php files, I'd do:

Code:
$id = $_REQUEST['id'];
if(file_exists($id.".jpg")) {
echo "<img src='$id.jpg'>";
} elseif(file_exists($id.".php")) {
include($id.".php");
} else {
include("main.php");
}
irseg is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37