I know this is kinda vague, I can give more info if need be but why is the following line a a boolean value when I send it through the debugger.
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['id'] . "</td>";
echo "<td>" . $row['name'] . "</td>";
echo "<td>" . $row['issueMessage'] . "</td>";
echo "<td>" . $row['computerDescription'] . "</td>";
echo "<td>" . $row['osType'] . "</td>";
echo "<td>" . format_phone($row['number']) . "</td>"; //format_phone is above this so...
echo "</tr>";
echo "</table>";
}
It's for a Computer tech support site I'm coding for a friend