What is the exact problem??
Posted: Sat Nov 03, 2012 2:24 pm
This link is opening..http://topz.iwebs.ws but why this one is not opening http://topz.iwebs.ws/category.php or http://topz.iwebs.ws/footer.php . Its saying Connection Closed By Remote Serverin Opera Mini 4.4. here is the simple code that I'm using on category.php
Can't guess the actual problem 
Code: Select all
<?php
include "main_head.php";
include "mycss.css";
$category=isset($_GET['category']);
$err="err.php";
if($category=='amateur')
$page='amateur.php';
elseif($category=='beach')
$page='beach.php';
elseif($category=='college_girls')
$page='college_girls.php';
elseif($category=='lesbians')
$page='lesbians.php';
elseif($category=='mature_sex')
$page='mature_sex.php';
elseif($category=='teen_sex')
$page='teen_sex.php';
else $page=$err;
include $page;
include "main_foot.php";
?>