| 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/glamourdollars.com/vip-area/ |
Upload File : |
<?php
$grab_sql = @mysql_query($query);
if(@mysql_num_rows($grab_sql) > 0) {
?>
<?=$pagination?>
<br />
<table align="center" border="0" cellspacing="10" cellpadding="0">
<?
$step_count = 0;
$total_count = 0;
unset($row);
while ($row = mysql_fetch_array($grab_sql)) {
if ($step_count == 0) { echo "<tr>"; }
if($row['slug']){
$icon = "../".$modelsweb.$row['slug'].".jpg";
} else {
$icon = "../".$modelsweb.$row['model_id']."_icon.jpg";
}
if ($row['rate'] == "") { $rate = "0"; } else { $rate = $row['rate']; }
$rate = round($rate,2);
if(isset($linktomodels)) {
$url = "/models.php";
} else {
$url = "/".str_replace(" ","-",strtolower($row['name']));
}
//$url = "join.php?type=1&id=".$row['model_id'];
//$url = "model.php?id=".$row['model_id'];
?>
<td valign="top" width="200" align="center">
<? if(isset($linktomodels) && $step_count == 25 && $page == 5) { ?>
<div style="height:288px" align="center">
<a href="join.php?type=1&id=<?=$row['model_id']?>"><span class="ficon">VIP</span></a><br /><br />
<a href="join.php?type=1&id=<?=$row['model_id']?>"><span class="contentname">INSTANT<br />ACCESS</span><br /><br /><img src="images/rightarrow.jpg" width="69" height="68" border="0" /></a></div>
<? } else { ?>
<?php
if(isset($delights)) {
$de = explode('-',$row['delightdate']);
//$releasedate = date("F j, Y",mktime(0,0,0,$rd[1],$rd[2],$rd[0]));
//$delightdate = $de[1]."-".$de[2]."-".$de[0];
$detxt = date("F Y", mktime(0, 0, 0, $de[1], $de[2], $de[0]));
echo "<div align=\"center\" class=\"contentname\">";
echo $detxt;
echo "</div>";
}
?>
<a href="<?=$url?>"><img src="<?=$icon?>" border="0" alt="<?php print $row['name']; ?>" class="tn" alt="<?php print str_replace("-", " ", $row['slug']); ?>" /></a><br />
<div align="center" class="contentname"><?=stripslashes($row['name'])?></div>
<!--
<div align="center" class="contentsub"><?=$row['total_photos']?> photos
<? if($row['total_videos'] > 0) { ?> | <?=$row['total_videos']?> videos <? } ?>
</div>
-->
<? } ?>
</td>
<?
$step_count++;
$total_count++;
if($step_count == $num_columns) {
$step_count = 0;
echo "</tr>";
}
}
if ($total_count < $num_columns) {
for ($i=$step_count;$i<$num_columns;$i++) {
echo "<td valign=\"top\" width=\"200\"> </td>";
}
echo "</tr>";
}
?>
</table>
<?
echo $pagination."<br />";
}
?>