Created a small registration form, trying to spit back the information for confirmation. Getting a parsing error. I don't know if it means anything, but I created the form and table in GoLive. Up to defining the variables everything is cool, ZDE points to line 32, as an unexpected >. Though even if I took that out I don't beleive the fault lies in that line <tr> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <meta name="generator" content="Adobe GoLive 6"> <title>Welcome to Adobe GoLive 6</title> </head> <body bgcolor="#ffffff"> <p></p> <form action="(EmptyReference!)" method="get" name="FormName"> <p></p> <hr noshade size="19"> <p></p> <p><font size="5" color="blue">Please confirm that this is your correct information:</font></p> <p></p> <p></p> <table width="444" border="0" cellspacing="2" cellpadding="2"> <?php //create short variable names $LastName = $HTTP_POST_VARS['LastName']; $Address1 = $HTTP_POST_VARS['Address1']; $City = $HTTP_POST_VARS['City']; $State = $HTTP_POST_VARS['State']; $Zip = $HTTP_POST_VARS['Zip']; $HTele = $HTTP_POST_VARS['HTele']; <tr> <td colspan="2">Last Name</td> <td>$LastName;</td> </tr> <tr> <td colspan="2">Address 1</td> <td>$Address1;</td> </tr> <tr> <td colspan="2">City</td> <td>$City;</td> </tr> <tr> <td colspan="2">State</td> <td>$State;</td> </tr> <tr> <td colspan="2">Zip</td> <td>$Zip;</td> </tr> <tr> <td colspan="2">Telephone</td> <td>$HTele;</td> </tr> </table> ?> <p></p> <p></p> <p></p> </form> <hr> <p></p> <p></p> <p></p> <p></p> </body> </html>