colap Posted February 6, 2011 Share Posted February 6, 2011 It's about making a form for a web page. Which is better? Using table or divs? Which do you use? <form action='a.php' method='post'> <table> ............. </table> </form> <form action='a.php' method='post'> <div> ............. </div> </form> Quote Link to comment https://forums.phpfreaks.com/topic/226898-creating-a-form-with-table-or-with-div/ Share on other sites More sharing options...
BlueSkyIS Posted February 6, 2011 Share Posted February 6, 2011 i use tables for forms because i am not so hot at css and find it tricky to get things to line up right in a form using css. lame excuse, but there it is. Quote Link to comment https://forums.phpfreaks.com/topic/226898-creating-a-form-with-table-or-with-div/#findComment-1170750 Share on other sites More sharing options...
Pikachu2000 Posted February 6, 2011 Share Posted February 6, 2011 i use tables for forms because i am not so hot at css and find it tricky to get things to line up right in a form using css. lame excuse, but there it is. Me too. There, I said it. Now you know my dirty little secret. Quote Link to comment https://forums.phpfreaks.com/topic/226898-creating-a-form-with-table-or-with-div/#findComment-1170752 Share on other sites More sharing options...
atrum Posted February 6, 2011 Share Posted February 6, 2011 I always make my forms using divs and css. Here is one I did a little while back that is all divs and css. http://icca.exiled-alliance.com Check the source out for that to give your self some pointers. Let me know if you have any questions. Quote Link to comment https://forums.phpfreaks.com/topic/226898-creating-a-form-with-table-or-with-div/#findComment-1170754 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.