Hi smac
while ($data = mysql_fetch_array($resultID))
{
echo $data["ID"].": ".$data["TextKleines"]."<br>";
}
wenn $data["ID"] der name des Bildes ist, und $data["TextKleines"] der alt text,
würde das so aussehen:
<table>
<tr>
<td>
<img src="<? echo 'pfad/'.$data["ID"].'.jpg'; ?>" alt="<? echo $data["TextKleines"]; ?>">
</td>
</tr>
</table>
wenn nicht sag mir doch mal was in der Datenbank liegt die URL (in welcher Form) oder wirklich das Billd selber ?
mfg Joey