The whole code is here, if it can help in any way:
<html>
<body>
<?php
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."squad.php";
include('mysql_connect.php');
$pl_header .=<<<SIF
<table width='100%' class='main-body'>
<tr>
<td>
<table width='100%'>
<tr align='left' class='table-cellpic'>
<th colspan='3'>Spillertrup 2006/2007</th>
</tr>
</table>
<table width='40%' align='left' cellpadding='2' cellspacing='2'>
<tr align='left'>
<td></td>
<th>Nr.</th>
<th>Navn</th>
<th>Position</th>
</tr>
SIF;
$result = mysql_query("SELECT pl_id, pl_name, pl_pos, pl_pic, pl_shirt FROM squad ORDER BY pl_shirt");
while ($row = mysql_fetch_array($result))
{
$pl_shirt = $row['pl_shirt'];
$pl_pic = $row['pl_pic'];
$pl_id = $row['pl_id'];
$pl_name = $row['pl_name'];
$pl_pos = $row['pl_pos'];
$pl_details .=<<<SIF
<tr align='left'>
<td><IMG SRC='../images/'.$pl_pic.'' WIDTH='30' HEIGHT='30' ALT=''></td>
<td>$pl_shirt</td>
<td><a href='squad_details.php?pl_id=$pl_id'title='Klik her, for at få mere info om $pl_name'>$pl_name</a></td>
<td>$pl_pos</td>
</tr>
<tr>
<td colspan='4'>
<hr width="400" size="1" noshade>
</td>
</tr>
SIF;
}
$pl_footer = "</table></td></tr></table>";
$player=<<<PLAYER
$pl_header
$pl_details
$pl_footer
PLAYER;
echo $player;
require_once "side_right.php";
require_once "footer.php";
?>
</body>
</html>