Ich hab die variante versucht die mir vorgeschlagen wurde, leider weiss ich nicht wo es liegt.
Unten aufgelisetet ist die Variante mit empty, aber funkt auch nicht.
Unten aufgelisetet ist die Variante mit empty, aber funkt auch nicht.
PHP-Code:
<tr bgcolor="<?php echo $stil ?>">
<?php $id < 0; if (empty ($id)) { ?>
<td class="listedb"><?php echo $db->f("id"); ?> </td>
<?php $titel <= 0; if (empty ($titel)) { ?>
<td class="listedb"><?php echo $db->f("titel"); ?> </td>
<?php $text <= 0; if (empty ($text)) { ?>
<td class="listedb"><?php echo $db->f("text"); ?> </td>
<td class="listedb"><?php echo $db->f("datum"); ?> </td>
<td class="listedb"><?php echo $db->f("zeit"); ?> </td>
<?php $autor <= 0; if (empty ($autor)) { ?>
<td class="listedb"><?php echo $db->f("autor"); ?> </td>
<td class="listedb"><?php echo $db->f("anzeigen"); ?> </td>
<td align="center" class="listedb">
<input type="checkbox" value="<?php echo $db->f('id'); ?>" name="ids[]"></td>
<td align="center" class="listedb" bgcolor="<?php echo $stil ?>">
<a href="?section=news_edit&id=<?php echo $db->f('id'); ?>">[ J A ]</a></td>
</tr>
<?
}
}
}
if (!isset ($id, $titel, $text, $autor)) { // evaluates false
print 'Keine Datensätze gefunden';
}
?>
Kommentar