HTML Problem: I need some help with this.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • xenigo
    Confirmed User
    • Jan 2001
    • 8067

    #1

    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"> &nbsp; format &nbsp;
    
    					<select style="width: 80px">
    						<option value="mike.wmv">WMV</option>
    						<option value="mike.wmv">MPEG</option>
    					</select>
    				</form>
  • who
    So Fucking Banned
    • Aug 2003
    • 19593

    #2
    Sure, your form has no action.

    Comment

    • Diligent
      Confirmed User
      • Aug 2003
      • 1594

      #3
      What who said.. and of course, make sure you get the *fully correct path etc.* to the script nailed..!
      ~¤~ MORE MONEY ~¤~ VOD? XoD! ~¤~
      ~¤~ ICQ# 9828 2461 ~¤~

      Comment

      • ilbb
        Confirmed User
        • May 2005
        • 3025

        #4
        do You have server side to this form too?

        Comment

        • StuartD
          Sofa King Band
          • Jul 2002
          • 29903

          #5
          Originally posted by who
          Sure, your form has no action.
          yeah.... I never knew html was so hard.
          This is me on facebook
          This is me on twitter

          Comment

          Working...