Quote:
Originally Posted by Scanu
PHP Code:
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR); $do = $vbulletin->GPC['do']; if (!isset($do)) $do = 1; //default value
if ($do == 1) {
} if ($do == 2) {
} if ($do == 3) {
} if ($do == 4) {
}
|
Thanks for the example. Makes me understand more now.
--------------- Added [DATE]1409646066[/DATE] at [TIME]1409646066[/TIME] ---------------
Quote:
Originally Posted by Scanu
PHP Code:
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR); $do = $vbulletin->GPC['do']; if (!isset($do)) $do = 1; //default value
if ($do == 1) {
} if ($do == 2) {
} if ($do == 3) {
} if ($do == 4) {
}
|
I tried doing this but it won't work if I access the info.php page without the query on the end of the URL:
Code:
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do = $vbulletin->GPC['do'];
if (!isset($do))
//default value
$do = "siterules";
//Use as http:/site.com/info.php?do=siterules
if ($do == "siterules") {
$pagetitle = 'General Site Rules';
$templater = vB_Template::create('siterules');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
$templater->register('custom_nav', $custom_nav);
print_output($templater->render());
exit;
}