this:
echo <<<END_OF_HEADER
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" margin="0">
<form action="storegame.php" method="post" name="Storegame">
<table cellpadding="0" cellspacing="0" width="700" border="1" bordercolor="black">
<tr>
<td class="RedLine_C">Game No</td>
<td class="RedLine_C">GameDate</td>
<td class="RedLine_C">GameTime</td>
<td class="RedLine_C">Visitor</td>
<td class="RedLine_C">Visitor Score</td>
<td class="RedLine_C">Home</td>
<td class="RedLine_C">Home Score</td>
<td class="RedLine_C">Field</td>
</tr>
END_OF_HEADER;
echo <<<END_OF_SECTION
<tr>
<td valign="top" align="center" width="65"><font face="Veranda,Arial" size="2">
$gameno</font>
</td>
END_OF_SECTION;
outputs this:
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" margin="0">
<form action="storegame.php" method="post" name="Storegame">
<table cellpadding="0" cellspacing="0" width="700" border="1" bordercolor="black">
<tr>
<td class="RedLine_C">Game No</td>
<td class="RedLine_C">GameDate</td>
<td class="RedLine_C">GameTime</td>
<td class="RedLine_C">Visitor</td>
<td class="RedLine_C">Visitor Score</td>
<td class="RedLine_C">Home</td>
<td class="RedLine_C">Home Score</td>
<td class="RedLine_C">Field</td>
</tr>
<tr>
<td valign="top" align="center" width="65"><font face="Veranda,Arial" size="2">
107</font>
</td>
Note the indented <tr>?
I want them all to line up. Call me anal retentive, I don't care, I
just like all my stuff to be correctly indented.