firefox issue with my code

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • aznFETISH

    #1

    firefox issue with my code

    The below code is included on and upload page I have, it work perfectly in
    IE but for some reason the upload button doesn't show up in Firefox, any
    idea?
    <form action="upload. php" method="post">

    <LEGEND>Selec t the number of files to upload</LEGEND>
    <br><br><sele ct name='num'>
    <?php
    for($i = 1; $i <= 20; $i++)
    {
    echo "<option value=".$i.">". $i."</option>";
    }
    ?>&nbsp;
    <input type="Submit" value="Upload Files">
    </form>


  • Erwin Moller

    #2
    Re: firefox issue with my code

    aznFETISH wrote:
    [color=blue]
    > The below code is included on and upload page I have, it work perfectly in
    > IE but for some reason the upload button doesn't show up in Firefox, any
    > idea?
    > <form action="upload. php" method="post">
    >
    > <LEGEND>Selec t the number of files to upload</LEGEND>
    > <br><br><sele ct name='num'>
    > <?php
    > for($i = 1; $i <= 20; $i++)
    > {
    > echo "<option value=".$i.">". $i."</option>";
    > }
    > ?>&nbsp;[/color]

    Maybe add an </SELECT> here.

    IE is too forgiving and makes up own tags to fix bad code.
    [color=blue]
    > <input type="Submit" value="Upload Files">
    > </form>[/color]

    Regards,
    Erwin Moller

    Comment

    • Robin

      #3
      Re: firefox issue with my code

      aznFETISH wrote:[color=blue]
      > The below code is included on and upload page I have, it work perfectly in
      > IE but for some reason the upload button doesn't show up in Firefox, any
      > idea?
      > <form action="upload. php" method="post">
      >
      > <LEGEND>Selec t the number of files to upload</LEGEND>
      > <br><br><sele ct name='num'>
      > <?php
      > for($i = 1; $i <= 20; $i++)
      > {
      > echo "<option value=".$i.">". $i."</option>";
      > }
      > ?>&nbsp;
      > <input type="Submit" value="Upload Files">
      > </form>[/color]

      Where's your </select> ?

      Robin

      Comment

      • Ian Taylor

        #4
        Re: firefox issue with my code

        aznFETISH wrote:[color=blue]
        > The below code is included on and upload page I have, it work perfectly in
        > IE but for some reason the upload button doesn't show up in Firefox, any
        > idea?
        > <form action="upload. php" method="post">
        >
        > <LEGEND>Selec t the number of files to upload</LEGEND>
        > <br><br><sele ct name='num'>
        > <?php
        > for($i = 1; $i <= 20; $i++)
        > {
        > echo "<option value=".$i.">". $i."</option>";
        > }
        > ?>&nbsp;
        > <input type="Submit" value="Upload Files">
        > </form>
        >
        >[/color]

        you have no closing select tag?

        Comment

        • aznFETISH

          #5
          Re: firefox issue with my code

          Thanks guys that fixed it

          "aznFETISH" <news@aznfetish .com> wrote in message
          news:Hqw5e.5232 4$Fz.6233@torna do.tampabay.rr. com...[color=blue]
          > The below code is included on and upload page I have, it work perfectly in
          > IE but for some reason the upload button doesn't show up in Firefox, any
          > idea?
          > <form action="upload. php" method="post">
          >
          > <LEGEND>Selec t the number of files to upload</LEGEND>
          > <br><br><sele ct name='num'>
          > <?php
          > for($i = 1; $i <= 20; $i++)
          > {
          > echo "<option value=".$i.">". $i."</option>";
          > }
          > ?>&nbsp;
          > <input type="Submit" value="Upload Files">
          > </form>
          >[/color]


          Comment

          Working...