Free Adult Tube-Video Script Forum

Full Version: showing user name in recent_comments() function
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you would like to show the username with the recent comments,
or the username and date,
replace this line with one of the two others provided:
Code:
$kategoriler=$kategoriler.'<li><a href="'.$root_url.$linki.'">'.substr(urldecode($row['comment']),0,60).'...</a></li>';

To show Username:

Code:
$kategoriler=$kategoriler.'<li>'.$row['adi'].'<br><a href="'.$root_url.$linki.'">'.substr(urldecode($row['comment']),0,60).'...</a></li>';

To show Username and date:
Code:
$kategoriler=$kategoriler.'<li>'.$row['adi'].'<br>'.$row['tarih'].'<br><a href="'.$root_url.$linki.'">'.substr(urldecode($row['comment']),0,60).'...</a></li>';

BE SURE TO CLEAR YOUR CACHE ONCE MAKING CHANGES
Reference URL's