HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: /home/httpd/html/tubeshemale.com/public_html/templates_OLD_JUNK/template.ajax_comments_profile.php
<? 
include_once("../admin/db.php"); 
if(is_numeric($_GET[id])) {
	$id = $_GET[id]; 
}	
$cresult = mysql_query("SELECT * FROM profile_comments WHERE profile = '$id' ORDER BY timestamp DESC LIMIT 0,15"); 

if(mysql_num_rows($cresult) > 0) { 
?>

	<ul class="ul-comments" id='ul-comments'>
		<? 
			while($crow = mysql_fetch_array($cresult)) { 
		?>
			<li>
				<strong><? echo $crow[name]; ?></strong> wrote <? echo datediff('n',$crow[timestamp],time(),true); ?> ago:
				<p><i><? echo $crow[comment]; ?></i></p>
			</li>
		<? } ?>
	</ul>
	<div id="commentspagination"></div>

<? } else { ?>

	This user has no wall posts. Please leave your comments and be the first!

<? } ?>