backbone: /PHP übergabe von checkboxwerten

Beitrag lesen

aloha...

für was soll das array(...) sein?

dient zur erstellung eines array?!

$ids    = implode(" OR id = ",$i);
du willst Angaben die vom User kommen ungeprüft verwenden? Was passiert, wenn der in ein $i mal "13 OR 1=1" reinschreibt? - dann sind aber _alle_ Daten weg (zumindest wenn ich jetzt keinen Denkfehler gemacht habe :-))

ja, nur das ist hier irrelevant da das programm nur für user gedacht ist die sich mit der sache auskennen und die absicht der manipulation nicht haben.

$id_send.= "id = ".$ids;
dein php-Code mag ja ganz interessant sein - interessanter wäre aber wie der html-Teil aussieht.

okay, hier mal der html-code

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
 <head>

<title>showroom</title>

<link rel="stylesheet" type="text/css" href="./style/basic.css">
  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">

</head>

<body>

<table border="0" cellspacing="0" cellpadding="0">

<tr>
   <td colspan="6" height="30" valign="top"><p>Alle eingetragenen Computer mit den wichtigsten Kenndaten</p></td>
  </tr>
  <tr>
    <td valign="top"><table border="0">

<tr>
     <td class="show_top"><p>Raum</p></td><td class="show_top"><p>PC-ID</p></td><td class="show_top"><p>IP-Adresse</p></td><td class="show_top"><p>CPU</p></td><td class="show_top"><p>RAM</p></td><td class="show_top"><p>HDD<a href="#" onclick="window.open('./help/index.php?help=shorthdd', 'Help', 'height=100,width=270,locationbar=no,menubar=no,scrollbars=yes')">*</a></p></td><td class="show_top"><p>Löschen</p></td>

</tr>
    <form action="./edit.php" method="post">

<tr>
      <td class="show"><a href="./show.php?action=inside&room=Raum 17">Raum 17</a></td><td class="show"><a href="#" onclick="window.open('./deteil.php?id=pc1711', 'Deteils', 'height=550,width=630,locationbar=no,menubar=no,scrollbars=yes')">pc1711</a></td><td class="show"><p>127.0.0.1</p></td><td class="show"><p>Pentium III 800 MHz</p></td><td class="show"><p>256MB</p></td><td class="show"><p>40 GB</p></td><td class="show" align="center"><input type="checkbox" name="pc_id" value="pc1711"></td>
     </tr>

<tr>

<td class="show"><a href="./show.php?action=inside&room=Raum 17">Raum 17</a></td><td class="show"><a href="#" onclick="window.open('./deteil.php?id=wer', 'Deteils', 'height=550,width=630,locationbar=no,menubar=no,scrollbars=yes')">wer</a></td><td class="show"><p></p></td><td class="show"><p>fas</p></td><td class="show"><p>fas</p></td><td class="show"><p>0 GB</p></td><td class="show" align="center"><input type="checkbox" name="pc_id" value="wer"></td>
     </tr>

<tr>
   <td colspan="7" class="show" align="right"><input type="submit" name="del_any_pc" value="Löschen"></td>
  </tr>
    <input type="hidden" name="delete" value="yes">

</form>
   </table>
     </td>
    </tr>
  </table>

</body>
</html>

thx 4 help.

tschau