I run my script like this myscript.php? id = $ id how I could add
PHP Code:
/ / URL parameters Cleaning
+ $ vbulletin-> input-> clean_array_gpc ('r', array (
++++ 'perpage' => TYPE_UINT,
++++ 'id' => TYPE_UINT,
++++ 'pagenumber' => TYPE_UINT,
++++
));
$ id = $ vbulletin-> GPC ['id'];
if I want to add a paging my results knowing that my script function well in this type of url: myscript.php? $ page = page & id = $ id
how to add $ id in this part of code:
PHP Code:
/ / Display
$ pagenav construct_page_nav = (
++++ $ vbulletin-> GPC ['pagenumber']
++++ $ perpage,
++++
++++ $ cel_users ['users_count']
++++ 'myscript.php?' . $ vbulletin-> session-> vars ['sessionurl'], / / the pagenav-link
++++ '', / / To pass a portion or the second pagenav-link gets Directly above Appended to
++++ '', / / To pass an anchor
++++ '', / / ​SEO-Link for thread, forum member ... pages - the make-links pagenav seo'ed if you use the paginator is One of Those
++++ '', / / ​Array to pass linkinfo for SEO-Link Method
++++ '' / / Array to pass additional info for SEO-Link Method
);
thank you for your answers