Well, it's intersting how you're doing it, but here's something you could do:
<?php
if ( !empty($row_rsjob['c']) && !empty($row_rsjob['d']) && !empty($row_rsjob['e']) )
{
echo 'No reports available yet.';
}
?>
Here's some explanation to the above code:
IF
$row_rsjob['c'] IS NOT empty,
AND
$row_rsjob['d'] IS NOT empty,
AND
$row_rsjob['e'] IS NOT empty:
No reports are available.
If you want to use an OR (instead of the AND), use "||" (without quotes). Basically, you will only get the "No reports available yet" as long as all three columns are empty. If one is not empty, it will do something else.
Ah, and [php][/php] tags around code help a lot:
[php]<?php
if( !empty($row_rsjob['c']) )
{
[/php]
~Brett