<snip> is there anyway where i can check if page is defined in the url? </snip>
not sure I know exactly what you mean but I think you could use
something like this
$foo = @include("index.php");
if ($foo) {
//index.php was valid
} else {
//index.php was not valid
}
there also might be a better way to do this.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

