I have created this to print an invoice for items sold. when i send the variables to it from the html form, i get Parse error: parse error, unexpected T_LNUMBER, expecting ',' or ';' on line 2.
What am I doing wrong?
<?php
echo "<table border="1" width="953" id="table1">";
echo "<tr>";
echo "<td colspan="4">";
echo "<p align="center"><font size="5" color="#FF0000">South Bend & Vicinity Electrical JATC<br></font><font size="2">56365 Peppermint Rd.<br></font></td>";
echo "</tr>";
echo "<tr>";
echo "<td colspan="4">Sold To: "echo $_POST['Name']"</td>";
echo "</tr>";
echo "<tr>";
echo "<td width="116">ITEM:</td>";
echo "<td width="586">"echo $_POST['Item']"</td>";
echo "<td width="91">PRICE</td>";
echo "<td width="132">$ "echo $_POST['Price']"</td>";
echo "</tr>";
echo "</table>";
?>