
03-05-2007, 10:21 PM
|
 |
|
|
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
I add this, but don't show, always first page:
Quote:
Also if you want to create your own pages 'within' current vBulletin files, do the following:
Open the file you want, and then right before the final ?> in the source code, add the following:
Code:
if ($_REQUEST['do'] == 'disclamer')
{
eval('print_output("' . fetch_template('disclamer') . '");');
}
Replace 'xxx' with whatever you want ?do= in the query string to be (for example, replace 'xxx' with 'showprofile' so then someone would type in example.php?do=disclamer to view this template.) Then of course, change TEMPLATE_XXX to your template name, it's that simple!
|
|