ColdK Posted October 21, 2008 Share Posted October 21, 2008 Hi im making my 2nd site for my network and i came across recoding the login page and register and header then i came across this on the login page i added a table and then it just show the blank thin table at the bottom of the text but the text wasnt in it :? print "<table width=99% border=0 class=table> <tr> <th wdith=50%>[url="login.php>Login</a></th>"]<a href=#>Register[/url]</th> </tr> </table> <table width=80%> <tr> <td width=50%> <table width=99% border=2 class=table> <font color='gray'>Login"; print "<form action=authenticate.php method=post name=login onsubmit=\"return saveme();\">Username: <input type=text name=username> Password: <input type=password name=password> Remember me? <input type=\"radio\" value=\"ON\" name=\"save\">Yes <input type=\"radio\" name=\"save\" value=\"OFF\" checked>No <input type=submit value=Submit></form> </table> </td> Thankyou if you can help Quote Link to comment Share on other sites More sharing options...
Guest Anonymous Posted October 21, 2008 Share Posted October 21, 2008 Re: Table Help echo <<<EOT <table width=99% border=0 class=table> <tr> <th width=50%> <a href=login.php>Login</a> </th> <th width=50%> <a href=#>Register</a> </th> </tr> </table> <table width=80%> <tr> <td width=50%> <table width=99% border=2 class=table><tr><td> <font color='gray'> Login <form action=authenticate.php method=post name=login onsubmit="return saveme();"> Username: <input type=text name=username> Password: <input type=password name=password> Remember me? <input type="radio" value="ON" name="save">Yes <input type="radio" name="save" value="OFF" checked>No <input type=submit value=Submit> </form> </td></tr></table> </td> </tr> </table> EOT; (UNTESTED) Quote Link to comment Share on other sites More sharing options...
ColdK Posted October 21, 2008 Author Share Posted October 21, 2008 Re: Table Help error nyna and ive fixed it now so it dont matter Quote Link to comment Share on other sites More sharing options...
Tezza` Posted October 21, 2008 Share Posted October 21, 2008 Re: Table Help error nyna and ive fixed it now so it dont matter Funny how it works here :/. Quote Link to comment Share on other sites More sharing options...
Guest Anonymous Posted October 21, 2008 Share Posted October 21, 2008 Re: Table Help And it works here ... Quote Link to comment Share on other sites More sharing options...
Tezza` Posted October 21, 2008 Share Posted October 21, 2008 Re: Table Help And also ColdK, you really need to learn how to indent your code, that it awful to read. Quote Link to comment Share on other sites More sharing options...
Floydian Posted October 21, 2008 Share Posted October 21, 2008 Re: Table Help The question in my mind, is why have a table with one row, and one cell, and then a second table, nested inside the other one, which itself only have one row and one cell? I merely pose the question... Quote Link to comment 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.