Here's the code the problem row is marked with ****
However, I can't see how it could be the code b/c I haven't touched it and it worked just fine two days ago
$query = "SELECT issue, Cause, description_short, date_format(date_complete, '%m/%d/%y') AS date_complete, date_format(time_received, '%m/%d/%y') AS time_received FROM issues where Username='$Username'";
$result=mysql_query($query);
echo "<h1>Issues for $Username</h1>";
echo "<table cellspacing='15'>";
echo "<tr>\n
<td>Issue Number</td>\n
<td>Cause</td>\n
<td>A short Description</td>\n
<td>Date Request was received</td>\n
<td>Date Completed\n";
echo "<tr><td colspan='7'><hr></td></tr>\n";
*****while ($row=mysql_fetch_array($result))
{
extract($row);
echo "<tr>\n
<td>$issue</td>\n
<td>$Cause</td>\n
<td>$description_short</td>\n
<td>$time_received</td>\n";
If ($date_complete=="00/00/00")
{
echo "<td>Work In Progress</td>\n";
}
else
{
echo "<td>$date_complete</td>\n";
}
echo "<tr><td colspan='7'><hr></td></tr>\n";
}
echo "</table>\n";