This isn't exactly a php question, but I figured someone on here would probably know the answer so I thought I'd give it a try.
I've never experienced this before, and it seems like a very basic situation, but I can't figure it out. When I put in a simple <form></form> tag, the ending tag is causing a line-break in my code. I've used forms many times with no trouble, but for some reason there is a break directly after the </form> tag.
If anyone knows why this is happennig, and how to fix it, I'd be greatly appreciative.
Here's a sample of what I'm doing:
<form name="login_form" action="http://musicv2.mail.everyone.net/email/scripts/loginuser.pl" method="post" target="_blank">
<table width="850" border="0" align="center" bgcolor="#333333">
<tr>
<td class="background1" width="100" height="15">
<div align="center"><img src="images/email_1.jpg" border="0"></div></td>
<td class="background1" width="100"><center>
<input class="1" type="text" name="loginName" size="12" maxlength="30">
</center></td>
<td class="background1" width="100"><div align="center"><img src="images/password_1.jpg" border="0"></div></td>
<td class="background1" width="100"><center>
<input class="1" type="password" name="user_pwd" size="12" maxlength="30">
</center></td>
<td class="background1" width="60"><center>
<input type="submit" name="login" value="Login">
</center></td>
</tr>
</table></form>
thanks
Chris