PHP people... I know almost nothing about scripting but I'm trying to make something work. I have this simple script which I use to rotate adds on a page using a server side includes.
well I'm making a new site and I need to link two of these scripts together on the same page. I want to show the adds but I also want to include an extra file that would contain few pictures relating to that add (pictures will be on a html page linked to galleries).
so this is the basic script I'm using for the adds..
PHP Code:
<?php
$files = array();
// Define
$files[] = 'hardcore-01.html';
$files[] = 'hardcore-02.html';
$num = rand(0,sizeof($files)-1);
readfile($files[$num]);
?>
I would like to rotate matching pictures with the related add (hence pictures from that site) However due to the design I can't make the adds and the picture on the same HTML and include them with one SSI include, they have to be seprate due to the page design.
this would be the script for the gallery sections. (same as above)
PHP Code:
<?php
$files = array();
// Define
$files[] = 'hardcoregallery-01.html';
$files[] = 'hardcoregallery-02.html';
$num = rand(0,sizeof($files)-1);
readfile($files[$num]);
?>
Is there anyway I can link the two scripts together? so when 'hardcore-01.html' shows on the page then 'hardcoregallery-01.html' would also show in it's spot on the same page?
Also if there is an easier way I'm all ears..
