Code: Select all
// IF NO RESULTS
if (!mysql_num_rows($result))
{
echo "You have not completed any jobs yet. Click Available Jobs in the workers menu to start.";
}So i did this to try fix it.You have not
completed any
jobs yet. Click
Available.. etc
Code: Select all
// IF NO RESULTS
if (!mysql_num_rows($result))
{
echo "<tr><td colspan='4'>You have not completed any jobs yet. Click Available Jobs in the workers menu to start.</td></tr>";
}Im going round in circles now why wont they both just work
EDIT: I fixed it... Really got to stop coming here so fast