File: /home/httpd/html/tubeshemale.com/public_html/templates_OLD_JUNK/template.ajax_comments.php
<?
include_once("../admin/db.php");
if(is_numeric($_GET[id])) {
$id = $_GET[id];
}
$cresult = mysql_query("SELECT * FROM comments WHERE content = '$id' ORDER BY timestamp DESC");
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 { ?>
There are no comments for this video. Please leave your feedback and be the first!
<? } ?>