View Single Post
  #1 (permalink)  
Old 02-03-2008, 02:39 PM
Scripter Scripter is offline
Banned
312 posts this year. worth their weight in gold!
Trusted Member - And full of good stuff!
 
Join Date: Oct 2007
Posts: 257
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Send a message via MSN to Scripter Send a message via Yahoo to Scripter
Thumbs up Cool Simple Re-Direct Code

Here a little code, but cool

<?
if(!$area)
$area = 'main';

if(file_exists("$area.htm"))
include("$area.htm");
else
die("Area not found.");
?>

with this code, you can make something like this:
link.php?area=downloads
so, by this link, you will be redirected to downloads.htm, its dinamic, I really love it
Reply With Quote