Quote:
Originally Posted by Rated
Hi bill,
Ive not got the error codes handy - but ill show you my random banner script, if this doesn't help i will add it again and show the error codes that are confliciting with this script.
PHP Code:
<?php
// Random Picture v0.1
// (c) Guido Faecke, GF-Data Inc.
$pic_dir = 'images/banners/';
$counter = 0;
$d = dir($pic_dir);
while($entry=$d->read()) {
if ($entry != "." && $entry != "..") {
$array[] = $entry;
$counter++;
}
}
$d->close();
$counter--;
$which = rand(0, $counter);
?>
<? echo '<img src="'.$pic_dir.$array[$which].'" border="0">'; ?>
Thanks for the help 
|
Have you tried something like
PHP Code:
<?php
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
// Random Picture v0.1
// (c) Guido Faecke, GF-Data Inc.
$pic_dir = 'images/banners/';
$counter = 0;
$d = dir($pic_dir);
while($entry=$d->read()) {
if ($entry != "." && $entry != "..") {
$array[] = $entry;
$counter++;
}
}
$d->close();
$counter--;
$which = rand(0, $counter);
?>
<? echo '<img src="'.$pic_dir.$array[$which].'" border="0">'; ?>
//whatever stuff you like goes here.
<?php
// And we put this where we want the login box
require_once('/path/to/your/login_inc.php');
?>