This is the code I got from arcade.php, just need some help now on how to implement the same on my custom page.
PHP Code:
// alpha-navbar by MrZeropage
$alphabet = array( "ALL", "0-9" , "A" , "B" , "C" , "D" , "E" , "F" , "G" , "H" ,
"I" , "J" , "K" , "L" , "M" , "N" , "O" , "P" , "Q" ,
"R" , "S" , "T" , "U" , "V" , "W" , "X" , "Y" , "Z" );
$alphabar = ""; $currentfilter="ALL";
if ($ibforums->input['gsearch'] != "")
{
$currentfilter = $ibforums->input['gsearch'];
}
foreach ($alphabet as $letter)
{
$style="alt1"; $boldon=""; $boldoff=""; $width="18";
$urlstring="act=Arcade&gsearch=".$letter."&search_type=";
if ($letter == "0-9")
{
$urlstring.="3";
$width="24";
}
else
{
$urlstring.="1";
}
if ($letter == $currentfilter)
{
$style="alt2";
$boldon="<b>";
$boldoff="</b>";
}
if ($letter == "ALL")
{
$urlstring="";
$letter=$ibforums->lang['acp_all'];
$width="26";
}
if (isset($ibforums->input['cat']))
{
$urlstring .= "&cat=".intval($ibforums->input['cat']);
}
$alphabar .= '<td class="'.$style.'" width="'.$width.'" height="20"><div align="center"><a class="smallfont" href="'.$ibforums->base_url.$urlstring.'">'.$boldon.$letter.$boldoff.'</a></div></td>';
}
$this->arcade->links['alphabar'] = $alphabar;
// end alpha-navbar