I've only just picked up on this thread, but why not put each form inside a
<td> element?

i.e.
<table>
        <tr>
                <td><form> ... </form></td>
                <td><form> ... </form></td>
        </tr>
</table

apologies if I've misinterpreted the question

Tim Ward
www.chessish.com <http://www.chessish.com> 


        ----------
        From:  David Freeman [SMTP:[EMAIL PROTECTED]]
        Sent:  09 May 2002 22:24
        To:  [EMAIL PROTECTED]
        Subject:  RE: [PHP] problems with <form></form>


         > a table with several contents, and I have a form on every 
         > row, the problem is that the form is to big, so the tab le 
         > looks ugly, I tried with everything I could come up with, 

        The <form></form> tags imply a break which adds space vertically.
It's
        contrary to doing good html and will most likely cause errors in an
html
        validator but about the only way I've found to get around it is to
bury
        your <form></form> somewhere that the implied break won't do
anything.
        If you're using a table then between the <table> and <tr> or between
        </tr> and </table> is a pretty good place.

        CYA, Dave

        

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to