Thanks Bret & Dobakat for your help!
I have script with two files named index.php & config.php, the contents of which are below
index.php
<?php
include("config/config.inc.php");
$page = rand(1, $total_pages);
include("pages/portal$page.php");
?>
config.inc.php
<?php
//#-->This variable contains the amount of pages located in the /pages/ folder
//#-->DO NOT FORGET TO ADJUST THIS WHEN ADDING PAGES OR SCRIPT WILL NOT WORK!!!
$total_pages=2;
?>
Basically these scripts is for a website portal revolver. I've put numerous search engine codes within each portal file. My problem however is how do I get my affliates to all use this same portal? I've tried implenting those two options, however I keep getting parse errors. Any assistance on what needs to be added and where, would be appreciated. Thanks