Jump to content
MakeWebGames

Table Help


ColdK

Recommended Posts

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

Link to comment
Share on other sites

Guest Anonymous

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)

Link to comment
Share on other sites

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.   Paste as plain text instead

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