danlew Posted April 26, 2007 Share Posted April 26, 2007 Im making a form like so: <td height="317" valign="bottom" background="images/left2.gif"><div align="center"> <table width="180" border="0" align="center" cellpadding="3" cellspacing="0"> <tr> <td><div align="center"> <input type="text" name="email" onFocus="this.value=''" value="Email Address"> </div></td> </tr> <tr> <td><div align="center"> <input type="text" name="biz_type" onFocus="this.value=''" value="Business Type"> </div></td> </tr> <tr> <td><div align="center"> <input type="text" name="budget" onFocus="this.value=''" value="Budget"> </div></td> </tr> <tr> <td><div align="center"> <input type="text" name="location" onFocus="this.value=''" value="Location"> </div></td> </tr> <tr> <td><input type= image src="images/go2.gif" value="Submit" name="buy_submit"></td> </form> but when i add an extra line of code such as this; <form method="POST" action="buy-submit.php"> <td height="317" valign="bottom" background="images/left2.gif"><div align="center"> <table width="180" border="0" align="center" cellpadding="3" cellspacing="0"> <tr> <td><div align="center"> <input type="text" name="email" onFocus="this.value=''" value="Email Address"> </div></td> </tr> <tr> <td><div align="center"> <input type="text" name="biz_type" onFocus="this.value=''" value="Business Type"> </div></td> </tr> <tr> <td><div align="center"> <input type="text" name="budget" onFocus="this.value=''" value="Budget"> </div></td> </tr> <tr> <td><div align="center"> <input type="text" name="location" onFocus="this.value=''" value="Location"> </div></td> </tr> <tr> <td><input type= image src="images/go2.gif" value="Submit" name="buy_submit"></td> </form> It throws the whole page out of wack in dreamweaver? Is there a simple solution to adding this extra line of code <form method="POST" action="buy-submit.php"> somewhere oin the form without it making the tables and doc in dreamweaver go all over the place Quote Link to comment Share on other sites More sharing options...
fenway Posted April 26, 2007 Share Posted April 26, 2007 You're closing your form in the middle of table. 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.