I made a small php script to check which link adress is browsed, I am quite new to php and I only read a small tutorial so I am quite a newbie :rolleyes:
here is the code
<?php
$page= array("index.php, underC.php");
if (in_array("index.php", $page, true))
{
include ("Newsfact_01");
}
elseif (in_array("underC.php", $page, true))
{
Include ("underC.php");
}
?>
The things that happens is, no error, but the tale in which the page is displayed does not display at all
Suggestions are much appreciated