will someone tell me what the below message means?
Parse error: syntax error, unexpected 'include' (T_INCLUDE) in C:\xampp\htdocs\invoice\billing.php on line 5
<?php
// error_reporting(E_ALL ^ E_NOTICE);
error_reporting(0);
// include 'getnumbers.php';
include 'getinvno.php';
mysql_connect('localhost','root','');
mysql_select_db('oodb') or die( "Unable to select database");
$query="SELECT payrec, orderno, acctno, bname, bstreet, bcity, bstate, bzip, bemail, sname, sstreet, scity, sstate, szip, semail, terms, fob, shipdate, shipamt, dateord, datecomp, datepaid, qty, descr, charges, paidamt, tax, amtdue, baldue FROM oocust WHERE payrec = 'AR' AND baldue > '0.00'";
$result=mysql_query($query);
if(mysql_num_rows($result))
{
while(list($payrec, $orderno, $acctno, $bname, $bstreet, $bcity, $bstate, $bzip, $bemail, $sname, $sstreet, $scity, $sstate, $szip, $semail, $terms, $fob, $shipdate, $shipamt, $dateord, $datecomp, $datepaid, $qty, $descr, $charges, $paidamt, $tax, $amtdue, $baldue)= mysql_fetch_row($result))
{
echo "<b><center><font size=+2><br /><br /><br /><br /><br />Kirkwebsites Invoice</center></b></font><br /><br />";
echo date("m/d/Y") . "<br />";
echo "Invoice No: $invno</b><br />";
<table cellspacing=5 cellpadding=5 border=0 background="oldorchard.jpg">
<TD>
<TABLE BORDER=0 CELLPADDING=10 CELLSPACING=10 background="oldorchard.jpg">
<TD>
<TABLE BORDER=0 CELLPADDING=1 CELLSPACING=1 background="oldorchard.jpg">
<Tr>
<th>Charlie & Paulette Kirk</th><br>
<th>1827 Hart St.</th><br>
<th>Gastonia, NC 28054</th><br>
<tr>
<tD>Bill To:</tD><br>
echo "<td>" . $row['acctno'] . "</td>"<br>;
echo "<td>" . $row['bname'] . "</td>"<br>;
echo "<td>" . $row['bstreet'] . "</td>"<br>;
echo "<td>" . $row['bcity'] . "</td>"<br>;
echo "<td>" . $row['bstate'] . "</td>"<br>;
echo "<td>" . $row['bzip'] . "</td>"<br>;
echo "<td>" . $row['contact'] . "</td>"<br>;
<tr>
<tD>Bill To:</tD><br>
echo "<td>" . $row['sname'] . "</td>"<br>;
echo "<td>" . $row['street'] . "</td>"<br>;
echo "<td>" . $row['scity'] . "</td>"<br>;
echo "<td>" . $row['state'] . "</td>"<br>;
echo "<td>" . $row['zip'] . "</td>"<br>;
/TR></TABLE>
<tr>
<td>Invoice No:</td>
echo "<td>" . $row['invno'] . "</td>"<br;
<td>Terms:</td>
echo "<td>" . $row['terms'] . "</td>"<br;
<td>Due Date (yyyy/mm/dd)</td>
echo "<td>" . $row['duedate'] . "</td>"<br;
<td>Order No:</td>
echo "<td>" . $row['orderno'] . "</td>"<br;
<td>"Fob:</td>
echo "<td>" . $row['fob'] . "</td>"<br;
<td>shipdate (MM/DD/YYYY)</td>
echo "<td>" . $row['shipdate'] . "</td>"<br;
<td>Ship Amt:</td>
echo "<td>" . $row['shipamt:'] . "</td>";
<td>Description</td>
echo "<td>" . $row['descr:'] . "</td>";
<td>Charges:</td>
echo "<td>" . $row['charges:'] . "</td>";
<td>Tax:</td>
echo "<td>" . $row['tax:'] . "</td>";
<td>Amt Due: </td>
echo "<td>" . $row['amtdue: '] . "</td>";
</TABLE>
<tr>
<TD align=center><img src="dave pic.jpg" width=250 height=350></td>
</tr></TABLE>
}
}
?>