| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 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/store.tiacyrusxxx.com/public_html/ |
Upload File : |
<?php
include ('site.config.php');
include ('site.header.php');
if(isset($_GET['s']) && is_numeric($_GET['s'])) {
$sort = $_GET['s'];
if($sort == 0) {
$sqlAdd = " ORDER BY releasedate DESC";
} else {
$sqlAdd = " ORDER BY name ASC";
}
} else {
$sort = 0;
$sqlAdd = " ORDER BY releasedate DESC";
}
?>
<div class="content-box">
<h1>Models</h1>
<ul class="nav nav-tabs">
<li <?php if($sort == 0) { ?> class="active"<?php } ?>><a href="models.php?s=0">Latest</a></li>
<li <?php if($sort == 1) { ?> class="active"<?php } ?>><a href="models.php?s=1">Alphabetical</a></li>
</ul>
<br />
<ul id="modelOut-li">
<?php
$get = @mysql_query("SELECT * FROM cms_models WHERE modelStatus = '1' AND releasedate <= NOW() " . $sqlAdd);
while ($row = @mysql_fetch_object($get)) {
?>
<li class="top-level">
<div class="modelOut-frame">
<a href="<?php echo modelOutputName($row->name); ?>"><img src="content/models/<?php echo $row->model_id; ?>_mIcon.jpg" alt="<?php echo $row->name; ?>" /></a>
<h5><?php echo $row->name; ?><span>
<span class="glyphicon glyphicon-camera" aria-hidden="true"></span><?php echo contentCount($row->model_id,1); ?> <br />
<span class="glyphicon glyphicon-film" aria-hidden="true"></span><?php echo contentCount($row->model_id,2); ?> <br /></span>
<?php
$modelServices = '';
if($row->customVideoStatus == 1) {
$modelServices .= 'Custom Videos';
}
if($row->privateStatus == 1) {
if($modelServices == '') {
$modelServices .= 'Skype Dates';
} else {
$modelServices .= ', Skype Dates';
}
}
if($modelServices != '') {
echo '<br /><small><strong>I Offer Personal Services</strong></small>';
}
?>
</h5>
</div>
</li>
<?php
}
?>
</ul>
<div class="clearfix"></div>
</div>
<?php
include ('site.footer.php');
?>