Quote:
Originally Posted by Dismounted
PHP Code:
$vbulletin->db->escape_string($variable)
|
okay this works thank you..
PHP Code:
WHERE ipaddress='".$db->escape_string($vbulletin->GPC['searchstring'])."'");
But still dosent help me on the linking of pages
Link generated is
PHP Code:
$pagenav .= "<a href='sh2.php?do=Find&pagenumber=$thispage'>".$thispage."</a> ,";
and function (i think its a function, remember ur dealing with a non programmer here)
PHP Code:
if($_POST['do']=="Find"){
$vbulletin->input->clean_gpc('r', 'searchstring', TYPE_NOHTML);
$vbulletin->input->clean_array_gpc('r', array('pagenumber'=> TYPE_UINT,));
}
but it wont allow me to "reuse" that link,
should i remove all the " &pagenumber=$thispage" alltogether and attempt
getting the page number with _get or _request perhaps instaed. ?