PDA

View Full Version : index.php?page=2 how?


mallutribes
07-06-2009, 08:36 AM
i have seen in many website like this

index.php?page=2

page=3 like tht , it creates so many categories like tht , so how cud i create such a thng , like i want to create to categories , like downloads , online like tht ,

so how cud i create index.php?page=2 , like that pages?

Ronald0
07-06-2009, 08:38 AM
Can you please explain it in a more clear form, and use correct grammar so i can try to help.

HMBeaty
07-06-2009, 08:49 AM
Open the file you want (in this case index.php), and find:

eval('print_output("' . fetch_template('FORUMHOME') . '");');

And add before:

if ($_REQUEST['do'] == 'pagex')
{
eval('print_output("' . fetch_template('YOUR_TEMPLATE_NAME') . '");');
}

And obviously change pageX to page1 or page2 or page3 or whatever, and you would also need to create a template for that page and place the templates name that you created in the place of YOUR_TEMPLATE_NAME

mallutribes
07-06-2009, 04:02 PM
Ok let me be more specific.

you can see many tabs here in this forum, just above the search like Forum, Articles, Mods, Styles, Graphics etc. and you can go to different forum if you click on that.

and i need to go to another pages if i click on the tabs. same like another page with shout box and all. and i can create forums in that page too

TheLastSuperman
07-06-2009, 04:04 PM
It's a tab mod... hold tight for link

--------------- Added 1246900046 at 1246900046 ---------------

https://vborg.vbsupport.ru/showthread.php?t=191106&highlight=forumhome+tabs
or
https://vborg.vbsupport.ru/showthread.php?t=175687&highlight=forumhome+tabs

There are others so search and look at them all ;)

S-MAN