M
mstar
Hallo, ich habe einen Sytexfehler weiß aber nicht wieso, meiner meinung nach ist alles richtig:
Vielen Dank im Vorraus
PHP:
if ($mversString < $file1Read) {
echo "<tr>";
echo "<td height=\"19px\">$progname</td>";
echo "<td height=\"19px\">$mvers</td>";
echo "<td height=\"19px\" style=\"font-weight:bold; color:red;\">$file1Read<img src=\"action_delete.png\"></td>";
echo "<td height=\"19px\"><a href=\"http://www.$homepage\" target=\"_blank\">$homepage</a></td>";
echo "<td height=\"19px\">$datum</td>";
echo "</tr>";
}
elseif ($mversString > $file1Read) {
echo "<tr>";
echo "<td height=\"19px\">$progname</td>";
echo "<td height=\"19px\">$mvers</td>";
echo "<td height=\"19px\">$file1Read<img src=\"accept.png\"></td>";
echo "<td height=\"19px\"><a href=\"http://www.$homepage\" target=\"_blank\">$homepage</a></td>";
echo "<td height=\"19px\">$datum</td>";
echo "</tr>";
}
else ($mversString == $file1Read) { <--- hier soll der fehler sein
echo "<tr>"; <--- und hier
echo "<td height=\"19px\">$progname</td>";
echo "<td height=\"19px\">$mvers</td>";
echo "<td height=\"19px\">$file1Read<img src=\"action.png\"></td>";
echo "<td height=\"19px\"><a href=\"http://www.$homepage\" target=\"_blank\">$homepage</a></td>";
echo "<td height=\"19px\">$datum</td>";
echo "</tr>";
}
Vielen Dank im Vorraus
Zuletzt bearbeitet von einem Moderator: