xenigo |
11-16-2007 05:38 AM |
HTML Problem: I need some help with this.
Here's the code that I'm trying to implement. This code actually works on the site I found it on. But I'm having a problem getting it to work on my site. I can't figure out why it works where I found it, but won't work when I modify the code for my site. Very frustrating.
Below the original code, I pasted my non-working modification. Any help would be greatly appreciated. :confused:
Code:
<form method="get" action="/membercheck">
<input name="fd" value="1" type="hidden">
<input name="path" value="btra3912/clips_lo/" type="hidden">
<input class="button" value="Download" type="submit"> format
<select name="fname" style="width: 70px;">
<option value="btra3912-16.wmv">WMV</option>
<option value="btra3912-16.mpg">MPEG</option>
</select>
</form>
This is my modification that I expected to work. Any idea what I'm doing wrong?
Code:
<form>
<input type="submit" class="button" value="Download"> format
<select style="width: 80px">
<option value="mike.wmv">WMV</option>
<option value="mike.wmv">MPEG</option>
</select>
</form>
|