Table no results IE/Firefox issue... again (FIXED)
Posted: Fri Aug 28, 2009 9:15 am
Wish i had never opened my site with IE *sigh* another problem where i can only fix one and not the other. Basically i have a table and when no results are shown it displays some text. This version works in firefox:
When i tried this in IE all the text was in a single column which made it look very very wrong like this
Then success the sentence came out as a sentence, i go back to firefox and now it has the problem IE had where the sentence is in one column.
Im going round in circles now why wont they both just work
EDIT: I fixed it... Really got to stop coming here so fast
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