Well I recently upgraded to version 2 of the PHP package, however my site (jc-studios.co.uk) still doesn't work. The first page shows correctly however when they click on a link (e.g. jc-studios.co.uk/?area=Portfolio) it still shows the homepage. I have used this design before and it has always worked so I dont understand why it is not working now. If you go to here: http://jc-studios.co.uk/pages/areaPortfolio.php you can see that the page to be included is there.
Can anybody help?
P.S here is a copy of my code!!
Can anybody help?
P.S here is a copy of my code!!
PHP:
<?
if(isset($area)){
if (is_file("pages/area$area.php")){
include("pages/area$area.php");
}else{
include("pages/nofile.php");
}
}else{
$pageid = 2;
include("pages/areaAbout.php");
}
?>