hmm okay,, time for a little code i gues
1) it didnt pay attention on the varible changed that in the link..
PHP Code:
if($_POST['do']=="Find"){
$vbulletin->input->clean_gpc('r', 'searchstring', TYPE_NOHTML);
$vbulletin->input->clean_array_gpc('r', array('pagenumber'=> TYPE_UINT,));
$perpage = 10;
if(!$vbulletin->GPC['pagenumber']){
$vbulletin->GPC['pagenumber'] = 1;
}
$start = ($vbulletin->GPC['pagenumber'] - 1) * $perpage;
$ipscount = $db->query_first("
SELECT COUNT(ipaddress) AS count
FROM " . TABLE_PREFIX . "post
WHERE ipaddress='".$vbulletin->GPC['searchstring']."'
");
$pagecount = ceil($ipscount['count'] / $perpage);
print_cp_header("$vbphrase[EviFindipCPHeader]");
print_table_start();
print_table_header("$vbphrase[EviFindipTBFHeader]", 8);
if($pagecount > 1){
$pagenav = "<strong>$vbphrase[go_to_page]</strong>";
for ($thispage = 1; $thispage <= $pagecount; $thispage++){
if($thispage == $vbulletin->GPC['pagenumber']){
$pagenav .= " <strong>[$thispage]</strong> ";
} else {
// $pagenav .= " <a href=\"sh2.php?$session[sessionurl]do=Find&pagenumber=$thispage\" class=\"normal\">$thispage</a> ";
$pagenav .= "<a href='sh2.php?do=Find&pagenumber=$thispage'>".$thispage."</a> ,";
}
}
print_description_row($pagenav, false, 8, '', 'center');
}
and yes i see that the pagenumber is the correct var, didnt work for the link
Notice ONLY reason i got dublicated link it besource im trying different things out
im also suspecting that input->clean array to have a wrong syntax
but dont know the correct syntax for it, can only compared to others
that work.