$page_array = Array("index.php");
<?
$php_self = explode("/", $_SERVER[PHP_SELF]);
$url_cnt = count($php_self) - 1;
$this_page = $php_self[$url_cnt];
if(in_array($this_page, $page_array)) {
$result = true;
}
?>
Jun
11
Wednesday