Jump to content

rotating ad-banner help..


suess0r

Recommended Posts

this might put you on the right track

[code]
<select name="refresh">
<option value="0">None</option>
<option value="10" <?php if($_GET['refresh']==10) echo "SELECTED"; ?>>10 Seconds</option>
<option value="60" <?php if($_GET['refresh']==60) echo "SELECTED"; ?>>1 Minute</option>
<option value="300" <?php if($_GET['refresh']==300) echo "SELECTED"; ?>>5 Minutes</option>
</select>
[/code]

then have this:
[code]
if($_GET['refresh']){ ?><META HTTP-EQUIV="refresh" content="<?php echo $_GET['refresh'] ?>;URL=banner.php?refresh=<?php echo $_GET['refresh'] ?>
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.