| 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/admin/ |
Upload File : |
<?
require "header.php";
if($_POST['comments']) {
foreach($_POST['comments'] as $i) {
if(is_numeric($i)) {
mysql_query("DELETE FROM comments WHERE record_num = '$i'");
}
}
}
if(!is_numeric($_GET[id])) {
exit();
}
$result = mysql_query("SELECT * FROM content WHERE record_num = '$_GET[id]'");
$row = mysql_fetch_array($result);
?>
<div id="right_column">
<div id="right_top">
<div id="right_home"></div>
<div id="right_right">
<a href="index.php">Admin Home</a>
<span><a href="user_comments.php?id=<? echo $row[record_num]; ?>">Video Comments - <? echo $row[title]; ?></a></span>
</div>
</div>
<div id="right_bg">
<h2>Video<strong>Comments - <? echo $row[title]; ?></strong></h2>
<p>This page contains the most recent comments posted on your site for <? echo $row[title] ;?></p>
<div id="index_left" style='width: 100%;'>
<form id="form1" name="form1" method="post" action="">
<?
if(!isset($_GET['page']) || $_GET[page] == '') {
$page = 1;
} else {
$page = $_GET['page'];
}
if(!$_GET[setmax]) { $max_results = 100; } else { $max_results = $_GET[setmax]; }
$from = (($page * $max_results) - $max_results);
$bgcolor = '#ffffff';
$result_count = mysql_query("SELECT * FROM comments WHERE content = '$_GET[id]' ORDER BY timestamp");
$result = mysql_query("SELECT comments.*, content.title, content.record_num as contrec FROM comments, content WHERE comments.content = content.record_num AND comments.content = '$_GET[id]' ORDER BY timestamp DESC LIMIT $from,$max_results") or die(mysql_error());
$total_results = mysql_num_rows($result_count);
$total_pages = ceil($total_results / $max_results);
?>
<table width="750" border="0" align="center" cellpadding="3" cellspacing="0" class='pagetable'>
<thead>
<tr class='menutop'>
<th width="105" align='left'>Name</td>
<th width="162" align='left'>Video</td>
<th width="345" align='left'>Comment</td>
<th width="57" align="center">Edit</td>
<th width="51" align="center">Delete</td>
</tr>
</thead>
<?
while($row = mysql_fetch_array($result)) {
?>
<tr bgcolor = '<? echo $bgcolor; ?>'>
<td class="style4"><? echo $row[name]; ?></td>
<td class="style4"><a href="edit_content.php?id=<? echo $row[contrec]; ?>"><? if(strlen($row[title]) > 25) { echo substr($row[title],0,25)."..."; } else { echo $row[title]; } ?></a></td>
<td class="style4"><? echo $row[comment]; ?></td>
<td align="center" class="style4"><a href='edit_comment.php?id=<? echo $row[record_num]; ?>'>Edit</a></td>
<td align="center"><input name="comments[]" type="checkbox" class="style4" value="<? echo $row[record_num]; ?>" /></td>
</tr>
<?
if($bgcolor == '#ffffff') { $bgcolor = "#EBEBEB"; } else { $bgcolor = '#ffffff'; }
}
?>
</table>
<br />
<center><input type="submit" name="button" id="button" value="Delete Selected" /></center>
<br />
<center>
<?
if($page > 1){
$prev = ($page - 1);
if($prev == 1) { $prev = '1'; }
echo " <a style='font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; color: #000000' href=\"user_comments.php?id=$_GET[id]&page=$prev\">« Prev</a> / ";
}
for($i = 1; $i <= $total_pages; $i++){
if(($page) == $i){
echo "<span style='font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold;' >$i</span> / ";
} else {
if($i == 1) { $link = '1'; } else { $link = $i; }
echo " <a style='font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold;' href=\"user_comments.php?id=$_GET[id]&page=$link\">$i</a> / ";
}
}
// Build Next Link
if($page < $total_pages){
$next = ($page + 1);
echo " <a style='font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; color: #000000' href=\"user_comments.php?id=$_GET[id]&page=$next\">Next »</a> ";
}
?>
</center>
</form>
</div>
</div>
<div id="right_bottom"></div>
</div>
</div>
</div>
<? require "footer.php"; ?>