Guten Tag ihr lieben,
ich habe eine Gästebuch-Datei die viele Rows auf einmal updaten soll.
Der Code tut das nicht.
Es gibt keine Fehlermeldung!
Ich danke euch sehr für eure Hilfe.
ich habe eine Gästebuch-Datei die viele Rows auf einmal updaten soll.
Der Code tut das nicht.
Es gibt keine Fehlermeldung!
Ich danke euch sehr für eure Hilfe.
PHP-Code:
<?php
$hoster="db.mkq.de";
$username="db123abc";
$password="password";
$db_name="db123abc";
mysql_connect("$hoster", "$username", "$password")
or die("cannot connect");
mysql_select_db("$db_name")
or die("cannot select DB");
$sql="SELECT * FROM gbook";
$result=mysql_query($sql);
$count=mysql_num_rows($result);
?>
<table width="500" border="0" cellspacing="1" cellpadding="0">
<form name="form1" method="post" action="">
<tr>
<td>
<table width="500" border="0" cellspacing="1" cellpadding="0">
<tr>
<td align="center"><strong>Id</strong></td>
<td align="center"><strong>Name</strong></td>
<td align="center"><strong>PLZ</strong></td>
<td align="center"><strong>ORT</strong></td>
<td align="center"><strong>Komentar</strong></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td align="center">
<? $id[]=$rows['id']; ?><? echo $rows['id']; ?>
</td>
<td align="center">
<input name="name[]" type="text" id="name" value="<? echo $rows['name']; ?>">
</td>
<td align="center">
<input name="plc[]" type="text" id="plc" value="<? echo $rows['plc']; ?>">
</td>
<td align="center">
<input name="place[]" type="text" id="place" value="<? echo $rows['place']; ?>">
</td>
<td align="center">
<input name="comment[]" type="text" id="comment" value="<? echo $rows['comment']; ?>">
</td>
</tr>
<?php
}
?>
<tr>
<td colspan="4" align="center"><input type="submit" name="submit" id="submit" value="update"></td>
</tr>
</table>
</td>
</tr>
</form>
</table>
<?php
if($submit)
{
for($i=0;$i<$count;$i++)
{
$sql1="UPDATE gbook SET name='$name[$i]', plc='$plc[$i]', place='$place[$i]', comment='$comment[$i]' WHERE id='$id[$i]'";
$result1=mysql_query($sql1);
}
}
if($result1)
{
header("location:editmulti3.php");
}
mysql_close();
?>
Kommentar