[FONT=Times New Roman, serif]Hallochen, ne Frage bitte: [/FONT]
[FONT=Times New Roman, serif]Mit dem Code: [/FONT]
[FONT=Times New Roman, serif][SIZE=2]<?php>[/SIZE][/FONT] [LEFT][FONT=Times New Roman, serif][SIZE=2]$Produkte = @mysql_query($select . $from . $where);[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]if (!$produkte) {[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]echo '';[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]exit('
Error database!
'.[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]'Error: ' . mysql_error() . '
[FONT=Times New Roman, serif][SIZE=3]wird z.B. folgende Tabelle im Browser dargestellt:[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=3]Text: Option: [/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=3]Haus Delete[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=3]Auto Delete[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=3]Blume Delete[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=3]Apfel Delete[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2][SIZE=3]und der dazugehörende Delete-Code ist:[/SIZE][/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]<?php[/SIZE][/FONT] [LEFT][FONT=Times New Roman, serif][SIZE=2]$id = $_GET['id'];[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]$k1 = @mysql_query("DELETE FROM prodcat WHERE " .[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]"prodid='$id'");[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]$k2 = @mysql_query("DELETE FROM prod WHERE id='$id'");[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]if ($k1 and $k2) {[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]echo '
Deleted
';[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]} else {[/SIZE][/FONT] [FONT=Times New Roman, serif][SIZE=2]echo 'Error deleting
'.[/SIZE][/FONT][/LEFT]
[FONT=Times New Roman, serif][SIZE=2]'Error: ' . mysql_error() . '
[FONT=Times New Roman, serif][SIZE=2]Jetzt meine Frage:[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]In jeder Zeile wird die Option ‚Delete‘ aufgeführt (s.o.). Wie muss ich den Code ändern damit nur noch ein ‚Delete‘ für alle Zeilen da ist und auf der linken Seite in jeder Zeile jeweils ein Radio-Button zur Lösch-Auswahl steht (s.u.)? [/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]Radio-Button Haus [/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]Radio-Button Auto [/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]Radio-Button Blume Delete[/SIZE][/FONT]
[FONT=Times New Roman, serif][SIZE=2]Radio-Button Apfel[/SIZE][/FONT]
[FONT=Times New Roman]Radio-Button Birne[/FONT]
[FONT=Times New Roman, serif][SIZE=2]Danke.[/SIZE][/FONT]