Jump to content

Issue: Form Elements outside of form are not being recognised


simeonC
Go to solution Solved by Psycho,

Recommended Posts

Issue I have a form which is submitted and entered to a database like all forms. The problem begins when I started using form elements outside of the form tags.

 

as such

<form action="shopfunction.php?repair_id=<?php echo urlencode($_SESSION['repair_id']) ?>" id="customer_info" method="post"  name="customer_info">
 <td align="center"><input type="text" name="tag" autocomplete="" value="<?php echo $customer_info['tag']?>"></td>
            <td align="center"><input type="text" name="vin" autocomplete="" value="<?php echo $customer_info['vin']?>"></td>
            <td align="center"><input type="text" name="miles_in" autocomplete="" value="<?php echo $customer_info['miles_in']?>"></td>
            <td align="center"><input type="text" name="miles_out" autocomplete="" value="<?php echo $customer_info['miles_out']?>"></td>
</form>
--------------------VVVVVVV-------------------These are outside the form tag----------However have the form id attribute to be recognised------------VVV
 <td align="left">Sublet/Others</td>
            <td align="left"><input type="text" name="others" size="10" form="customer_info" value="<?php echo $display_other;?>"></td>
          </tr>
          <tr>
            <td align="left">***Shop Supplies</td>
            <td align="left"><input type="text" name="supplies" size="10" form="customer_info" value="<?php echo $display_supply ?>"></td>
          </tr>
          <tr>
            <td align="left">***Fees</td>
            <td align="left"><input type="text" name="fees" size="10" form="customer_info" value="<?php echo $display_fees; ?>"></td>

I have no idea why may be you guys can help me. Have my php script recognise these elements as form elements

 

Link to comment
Share on other sites

Probably because that was the whole point of having opening and closing form tags. The elements between those tags represent what is in the form. The form attribute is not supported in all browsers. So, if you want to be backward compatible you will need to put everything in the form tags

 

EDIT:

http://www.w3schools.com/tags/att_input_form.asp

 

 

The form attribute is supported in all major browsers, except Internet Explorer.
Edited by Psycho
Link to comment
Share on other sites

  • Solution

Im using safari and firefox. Should I still just wrap them in the form tag because it will break my code.

Depending on which version of those browsers you have, I suppose it should work. Maybe you have some other problem. But, you can put those other fields inside your form and have them displayed elsewhere on the page. Just use CSS to position them accordingly.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.