• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Banner Rotator??

yarassa

New Member
Anyone knows a script that rotate banners with url, i mean this

<img src="http://www.blabblab.com/image.php">

not with ssi or include, php or cgi script.


Thanks
 
<?php
PHP:
<?php
	mt_srand((double)microtime() * 1000000);

	$images = array(
				'img01.gif',
				'img02.gif',
				'img03.gif'
				);
	$random = $images[mt_rand(0, count($images) - 1];
	$path_to_image = 'images/' . $random;
	$fp = fopen($path_to_image, 'r');
	$contents = fread($fp, filesize($path_to_image));
	header('Content-type: image/gif');
	header('Content-Disposition: inline; filename=' . $random . '.gif');
	print $contents;
?>
 
Back
Top