Ah ok, now I understand your concept. But I typically use this code to verify the page that is being called
PHP Code:
if ($page){
if (!strpos($page,".")&&!strpos($page,"/")){
$path = "$page.php";
if (file_exists($path)){
include ("$page.php");
}
else{
echo "That page does not exist<br/><br/><a href='#' onclick='history.go(-1)'>Go Back To Previous Page</a>";
}
}
}
But I suppose I could (in you type of example) just add a &title=blahblah and GET that for the title, which I suppose works good to since the link has to be defined somehow so adding that would be easy enough. Cool
Bookmarks