Ich lasse eine Liste im Tabellenlayout aus einer DB ausgeben. Jetzt möchte ich dem Benutzter anzeigen welcher Eintrag neu ist und welcher nicht.
Das Problem ist, er zeigt mir immer die gleiche Grafik an.
Das Problem ist, er zeigt mir immer die gleiche Grafik an.
PHP-Code:
echo "<p><table width=\"100%\" border=\"0\" cellspacing=\"2\" cellpadding=\"1\" bgcolor=\"#f5f6fa\">";
echo "<tr class=\"txt\">";
echo "<p>";
if ($alt = $row->rid);
$isnew = '5';
$isnewtime = time() - $isnew;
if ( $row->zeit > $isnewtime ){
echo "<td width=\"30\" height=\"14\">
<div align=\"center\"><img src=\"new.gif\" alt=\"Neu\" align=\"absmiddle\" width=\"30\" height=\"14\"></div></td>";
}
if ( $row->zeit < $isnewtime ){
echo "<td width=\"30\" height=\"14\">
<div align=\"center\"><img src=\"cat.gif\" alt=\"Cat\" align=\"absmiddle\" width=\"10\" height=\"9\"></div></td>";
}
echo "<td colspan=\"4\" width=\"100%\"><a href =$row->url class=\"menü\">$row->titel </a> </td>";
echo "<td height=\"15\" width=\"50\"><div align=\"center\"> ($row->hits) </div></td>";
echo "<td height=\"15\" width=\"50\"></td>";
echo "<td height=\"15\" width=\"50\"></td>";
echo "</tr>";
echo "</table> <p>";
Kommentar