Need help removing READS and COMMENTS from Block...

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
drujr
Forum Newbie
Posts: 17
Joined: Thu May 13, 2004 1:59 pm

Need help removing READS and COMMENTS from Block...

Post by drujr »

In the default block in PHP Nuke, Last 5 Articles, how do I remove the "Reads" and "Comments" from this?

Code: Select all

<?php 

/************************************************************************/ 
/* PHP-NUKE: Web Portal System */ 
/* =========================== */ 
/* */ 
/* Copyright (c) 2002 by Francisco Burzi */ 
/* http://phpnuke.org */ 
/* */ 
/* This program is free software. You can redistribute it and/or modify */ 
/* it under the terms of the GNU General Public License as published by */ 
/* the Free Software Foundation; either version 2 of the License. */ 
/************************************************************************/ 

/* Block to fit perfectly in the center of the site, remember that not all 
blocks looks good on Center, just try and see yourself what fits your needs */ 

if (eregi("block-Last_10_Articles.php", $_SERVER['PHP_SELF'])) { 
Header("Location: index.php"); 
die(); 
} 

global $prefix, $multilingual, $currentlang, $db; 

if ($multilingual == 1) { 
$querylang = "WHERE (alanguage='$currentlang' OR alanguage='')"; 
} else { 
$querylang = ""; 
} 
$content = "<table width="100%" border="0">"; 

$sql = "SELECT sid, title, comments, counter FROM ".$prefix."_stories $querylang ORDER BY sid DESC LIMIT 0,5"; 
$result = $db->sql_query($sql); 
while ($row = $db->sql_fetchrow($result)) { 
$sid = $row['sid']; 
$title = $row[title]; 
$comtotal = $row[comments]; 
$counter = $row[counter]; 
$content .= "<tr><td align="left"><strong><big>&middot;</big></strong>&nbsp;<a href="modules.php?name=News&file=article&sid=$sid">$title</a></td><td align="right">[ $comtotal "._COMMENTS." - $counter "._READS." ]</td></tr>"; 
} 
$content .= "</table>"; 
$content .= "<br><center>[ <a href="modules.php?name=News">"._MORENEWS."</a> ]</center>";


Sorry I'm a real newbie as can be seen, but any assistance would be greatly appreciated.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

[ $comtotal "._COMMENTS." - $counter "._READS." ]
Post Reply