<?php
foreach ((array) comments($page_id) as $comment) {
?>
<div class="comment shadow effect">
<p class="left tip">
<img class="avatar" src="<?php echo get_gravatar($comment['email'],40);?>" />
</p>
<p class="body right">
<?php echo nl2br($comment['comment']);?>
</p>
<div class="detali_com">
<div class="blue" style="width:50%; text-align:left; float: left; "><?php echo $comment['username'];?> Said</div>
<div class="red" style="width:50%; text-align:right; float: left;"><a href="#" onclick="$(this).delete_comment(<?php echo $comment['id'];?>); return false;"><span class="blue"><?php echo timeBetween($comment['time'],time());?></span> · Remove Comment</a></div>
</div>
</p>
</div>
<?php
}
?>
ok and i wana reverse this comments'''
right now look like this
-------------
Jony say hello ! 4 hour ago
mant say ok ! 3 hour ago
cata say kkk ! 2 hour ago
and i want to have
cata say kkk ! 2 hour ago
mant say ok ! 3 hour ago
Jony say hello ! 4 hour ago
i search for this 2 hours :|.. how i can do this ?

New Topic/Question
Reply



MultiQuote








|