I'll be the first to admit I am not much of a PHP writer...more like a fairly effective code editor. Here is the code I tried to cobble together for the most Popular Article function, and as is so often the case, another SQL error was generated. Please forgive my retardedness.
Text Formatted Code
function phpblock_mostPopular () {
global $_TABLES;
$sql = DB_query("SELECT sid,title,hits FROM {$_TABLES["stories"]} WHERE (draft_flag = 0) AND (date <= NOW())
AND (Hits > 0)" . COM_getPermSQL ('AND') . " ORDER BY Hits desc LIMIT 10");
$result = DB_query($sql);
$nrows = DB_numRows( $result );
if( $nrows > 0 )
{
$string = '';
for( $i = 0; $i < $nrows; $i++ )
{
$A = DB_fetchArray( $result );
{
$poplist = COM_makeList( $popular, 'list-popular-stories' );
$string .= $poplist . '<br>';
}
}
$popular = array();
}
$popular[] = '<a href="' . COM_buildUrl( $_CONF['site_url']
. '/article.php?story=' . $A['sid'] ) . '">' . $A['title']
. '</a> (' . $A['comments'] . ')';
if( !empty( $popular ))
{
$poplist = COM_makeList( $popular, 'list-popular-stories' );
$string .= $poplist;
DB_query( "UPDATE {$_TABLES['blocks']} SET content = '$string' WHERE name = 'popular_stories'" );
}
}
Any help would be greatly appreciated.