Hi again,
I'm not sure where you got that code from but it looks very old

You'd be better to set the page up first in Dreamweaver or Kompozer, then add it to your PHP script.
The problems with the HTML are:
1. Your closing </html> tag should be at the end of the script. Also, you don't have any <head></head> or <body><body> tags in there. The normal way to structure pages would be:
Code: Select all
<html>
<head>
<title>My Page Title</title>
</head>
<body>
<p>Content goes here</p>
</body>
</html>
2. The reason why the 'Customer name' table is centred is because this table has an attribute in the <table> tag of
align = 'center' - you can either remove this attribute or change it to
align='left' if you want.
3. If you want the 'Confirm' button to appear underneath the tables then you need to remove the <center></center> tags that surround the submit button, duplicate one of the table rows in the table and edit it so it looks like this:
Code: Select all
<tr>
<td align='center' valign='top' colspan='2'>
<input type='submit' name='submit1' value='Confirm'>
</td>
</tr>
</table>
The reason why I say the code looks old is that you've got an awful lot of <font></font> tags in there - there's really no need to use this kind of markup as CSS makes pages much quicker (and simpler) to layout. Also, most sites have moved over to table-less layouts now - tables were only ever used to style pages because of the lack of CSS support in older browsers. You don't *have* to do this of course but it will make it much easier for you to maintain your pages.
If you need any more help please say so, and if you want to learn more about HTML or CSS I'd recommend you look at the tutorials on the w3schools site:
http://www.w3schools.com/html/default.asp
http://www.w3schools.com/css/default.asp
HTH,
Mecha Godzilla