Hallo, vielleicht kann mir jemand etwas hilfe leisten.
Ziel: Dropdownbox -> Kategorie XYZ ausgewählt daneben Anzeige -> Kategorie Bild XYZ.
Wie bekomme ich es hin das bei auswahl einer Kategorie das passende Bild in meinem Formular angezeigt wird.
Hier mein bisheriger Code...
Bin für jegliche Idee oder Anregungen dankbar.
gruß Lordsoth
Ziel: Dropdownbox -> Kategorie XYZ ausgewählt daneben Anzeige -> Kategorie Bild XYZ.
Wie bekomme ich es hin das bei auswahl einer Kategorie das passende Bild in meinem Formular angezeigt wird.
Hier mein bisheriger Code...
PHP-Code:
echo "<select name='catparent'><option selected>";
echo "$row[CatName]</option>";
$query = ("SELECT * FROM newscat ORDER BY CatName ASC");
$result = mysql_query($query) OR DIE (mysql_error());
$row = mysql_num_rows($result);
while ($row = mysql_fetch_array($result)){
echo "<option value=\"$row[CatID]\">$row[CatName]";
$caticon = "themes/".S_THEME."/img/caticons/$row[CatIcon].png";
if (file_exists($caticon)) {
echo " (Bild)";
}
echo "</option>";
}
echo "</select>";
gruß Lordsoth
Kommentar