hi
i have module 3news and i have some porb with my module i want to modify module and put numbers or bullets here is screenshot

i want to show numbers not ? this i want to replace this ? to numbers how i do that here is code
Code: 
<?php
if(!defined('DATALIFEENGINE'))
{
  die("Hacking attempt!");
}

$linklength = 200; // number of characters of news to show
$limittop = 25; // number of news in top block
$limitlast = 25; // number of news in last block
$limitran = 25; // number of news in random block

$showviews = false; // Show number of views at preffix of news link

$top_news = dle_cache( "top_news", $config['skin'] );
$last_news = dle_cache( "last_news", $config['skin'] );

if (!$top_news) {

    $this_month = date( 'Y-m-d H:i:s', $_TIME );
    $db->query("SELECT id, title, date, alt_name, category, news_read, flag  FROM " . PREFIX . "_post WHERE approve='1' ORDER BY news_read DESC LIMIT 0,{$limittop}");

    while ( $row = $db->get_row() ) {
        
        $row['date'] = strtotime( $row['date'] );
        $row['category'] = intval( $row['category'] );
        $row['news_read'] = intval( $row['news_read'] );
        
        if( $config['allow_alt_url'] == "yes" ) {
            
            if( $row['flag'] and $config['seo_type'] ) {
                
                if( $row['category'] and $config['seo_type'] == 2 ) {
                    
                    $full_link = $config['http_home_url'] . get_url( $row['category'] ) . "/" . $row['id'] . "-" . $row['alt_name'] . ".html";
                
                } else {
                    
                    $full_link = $config['http_home_url'] . $row['id'] . "-" . $row['alt_name'] . ".html";
                
                }
            
            } else {
                
                $full_link = $config['http_home_url'] . date( 'Y/m/d/', $row['date'] ) . $row['alt_name'] . ".html";
            }
        
        } else {
            
            $full_link = $config['http_home_url'] . "index.php?newsid=" . $row['id'];
        
        }
        
        if( strlen( $row['title'] ) > $linklength ) $title = substr( $row['title'], 0, $linklength ) . " ...";
        else $title = $row['title'];
        
        $go_page = ($config['ajax']) ? "onclick=\"DlePage('newsid=" . $row['id'] . "'); return false;\" " : "";
        if( $config['allow_comments_wysiwyg'] == "yes" ) $go_page = '';
        
        if ( $showviews )
        {
            $link = "<a {$go_page}href=\"" . $full_link . "\">[" .$row['news_read']. "] " . stripslashes( $title ) . "</a>";
        }
        else
        {
            $link = "<a {$go_page}href=\"" . $full_link . "\">" . stripslashes( $title ) . "</a>";
        }
        
        $top_news .= "&raquo; " . $link . "<br />";
    }
    $db->free();
    create_cache( "top_news", $top_news, $config['skin'] );
}
and also i have 1 more prob is that my facebook connect pro module is not working i dont know why i have everything fine but still some prob please help me thx
fahadzaman66 Reviewed by fahadzaman66 on . i want to put numbers or bullets hi i have module 3news and i have some porb with my module i want to modify module and put numbers or bullets here is screenshot i want to show numbers not ? this i want to replace this ? to numbers how i do that here is code <?php if(!defined('DATALIFEENGINE')) { die("Hacking attempt!"); } Rating: 5