| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/www.superporner.com/porn/controllers/ |
Upload File : |
<?
include($basepath.'/includes/inc.seo.php');
//QUERY CACHING
$cacheName = $_SERVER['REQUEST_URI'].$_SESSION[filterContent];
$cacheResult = getCache($cacheName);
$cacheTotalPages = getCache("total_pages$cacheName");
if($cacheResult && $cacheTotalPages) {
$array = $cacheResult;
$total_pages = $cacheTotalPages;
}
else {
include($basepath.'/controllers/control.index_queries.php');
while($row = mysql_fetch_assoc($result)) {
$array[] = $row;
}
if($thispage != 'favorites' && $_GET['mode'] != 'my_uploads') {
setCache($cacheName,$array,$overall_cache_time);
setCache("total_pages$cacheName",$total_pages,$overall_cache_time);
}
}
//EOF
//DISPLAY TEMPLATES
if(!is_array($array)) {
header("HTTP/1.0 404 Not Found");
}
getTemplate("template.overall_header.php");
if(is_array($array)) {
$i=0;
foreach($array as $row) {
if($results_per_row > 0){
$i++;
$rest = $i % $results_per_row;
if($rest == 0){
$class=' last';
} else {
$class='';
}
}
if($_GET['mode'] == 'search' && $_GET['type'] == 'members'){
getTemplate("template.member_item.php");
}else{
if($row['photos'] == 1) {
getTemplate("template.content_item_photo.php");
}
else {
getTemplate("template.content_item.php");
}
}
}
}
else {
echo "<div class='notification alert'><p>Sorry, no results were found.</p></div>";
}
getTemplate("template.overall_footer.php")
//EOF
?>