Hi,
I have a simple html form using it for a 'quick naviation menu' to goto other php pages. I am having an issue with the links though. The issue is, when I choose the first link, all is good (blank php page loads correctly, just the title of the page changes so I know). When I choose the second link, all is good (same as first), but all other pages don't change, (when I say change, I mean it's template based, all pages look the same, just the page titles would change, so I know it's on the correct page). The really odd thing is, how come when I go back to the first page, from the second (working) page it doesn't load now? Seems like it's sticking on one page, and won't leave it.
Any ideas?
Here's some code I use to do the form:
HTML Code:
<form name="Shopping_Quick_Jump">
<select name="choose">
<option selected>Choose Shopping Ad Type:</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/shopping.php">468 x 60 (Full-Size Banners)</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/234x60.php">234 x 60 (Half-Size Banners)</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/120x600.php">120 x 600 (Skyscrapers)</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/120x600.php">120 x 240
(Vertical Banners)</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/160x600.php">160 x 600 (Wide Skyscrapders)</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/120x60.php">120 x 60 (Buttons Style #1)</option>
<option value="http://www.reunitemysite.com/advertisements/premium/banners/120x90.php">120 x 90 (Buttons Style #2)</option>
</select>
<input type="button" onClick="location=document.Arts_Quick_Jump.choose.options[document.Arts_Quick_Jump.choose.selectedIndex].value;" value="Let's Go!">
</form>
Thank you
Brian
__________________
Made2Own
Last edited by Brian07002; 04-12-2011 at 09:51 AM..
|