Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.php > #17895

Re: Is it legitimate to have a continuous TABLE through multiple FORMs?

From "J.O. Aho" <user@example.net>
Newsgroups comp.lang.php
Subject Re: Is it legitimate to have a continuous TABLE through multiple FORMs?
Date 2019-04-25 21:36 +0200
Message-ID <giegieF2125U1@mid.individual.net> (permalink)
References <f00fdd04-e13e-4aa8-98a6-43b8cdbbd996@googlegroups.com>

Show all headers | View raw


On 24/04/2019 16.30, Dan Campbell wrote:

Just pointing out that this should have been in a HTML related newsgroup 
or forum instead of here.


> She starts a FORM, then a table inside that form, and does a few things.
> Then, without closing the table, she closes the FORM, creates another form,
> and immediately starts adding rows to the first table, without creating a table.

A form-tag should enclose the whole table of reside within a column 
td-tag, if you want to try to follow the HTML specification, sure 
browsers try to fix faulty HTML, but they do it in different ways, so 
the faulty HTML may result in different looking/working pages.



> Note that the multiple FORMs themselves are inside one containing table, which is properly closed at the end.
>
> <div id="main">
>     <div class="container">
>        <table width="100%">
>          <tr>
>             <td>
>                <form class="xxxx" action="xxxx.php" method="post">
>                   <table id="xxxx" class="xxxx" width="100%">
>                      <tr>
> <!--...-->
> <!--...-->
> <!--...-->
> <!--...-->
>                      </tr>

Close the table here and then close the form

>                <!-- HERE IT IS, A NEW FORM WITHOUT CLOSING THE TABLE -->
>                </form>
>                <form class="xxxx" action="xxxxxx.php" method="post">
Open a new table here

>                <!-- AND CONTINUING THE EXISTING TABLE, FROM PREVOUS FORM -->
>                   <tr>
>                      <td colspan = "2">
>                          <label><b><u>APPLICANT DETAILS</u></b></label>
>                          <br>
>                          <br>
>                      </td>
>                   </tr>

close the second table and then close the form.


-- 

  //Aho

Back to comp.lang.php | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Is it legitimate to have a continuous TABLE through multiple FORMs? Dan Campbell <dcwhatthe@gmail.com> - 2019-04-24 07:30 -0700
  Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-25 08:55 +0200
    Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-25 10:12 +0200
      Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-25 11:01 +0200
        Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-25 12:08 +0200
          Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-25 13:59 +0200
            Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-25 16:13 +0200
              Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-25 16:56 +0200
          Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Richard Damon <Richard@Damon-Family.org> - 2019-04-25 08:05 -0400
            Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-26 10:53 +0200
              Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 11:14 +0200
                Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-26 11:59 +0200
                Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 12:08 +0200
            Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2019-05-29 19:20 +0200
  Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-25 09:49 +0200
    Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-25 11:06 +0200
      Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-25 14:09 +0200
        Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Dan Campbell <dcwhatthe@gmail.com> - 2019-04-25 05:32 -0700
          Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-26 11:20 +0200
            Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 11:31 +0200
        Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-26 11:09 +0200
          Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 11:20 +0200
            Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 11:24 +0200
            Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "R.Wieser" <address@not.available> - 2019-04-26 12:31 +0200
              Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 13:34 +0200
              Re: Is it legitimate to have a continuous TABLE through multiple FORMs? Arno Welzel <usenet@arnowelzel.de> - 2019-04-26 13:36 +0200
  Re: Is it legitimate to have a continuous TABLE through multiple FORMs? "J.O. Aho" <user@example.net> - 2019-04-25 21:36 +0200

csiph-web