0
ユーザが選択したIDを取得してデータベースを更新しようとしています。PHPを使用してmysqlに情報を更新する
<form action="edit1.php" method="post">
<?php
$query = "SELECT * FROM disease1;";
$result = mysqli_query($dp, $query);
echo "<table border=5>
<tr>
<th>Disease ID</th>
<th>Disease</th>
<th>Sub Disease</th>
<th>Associated Disease</th>
<th>Edit</th>
</tr>";
while($row = mysqli_fetch_assoc($result)) {
echo "<tr>";
echo "<td>".$row{'id'}."</td>";
echo "<td>".$row{'Disease'}."</td>";
echo "<td>".$row{'SubDisease'}."</td>";
echo "<td>".$row{'Associated_Disease'}."</td>";
echo "<td><input type='radio' name='id' value='".$row[id]."'></td>";
echo "</tr>";}
echo "</table>";
?> <div>
<input type = 'submit' value = 'Update' name = 'submitupdate'>
マイEdtingページedit1.php
<?php
$conn = mysqli_connect('localhost','root','','tool')
if (!$conn) {
die("Connection failed: " . mysqli_error());
}
$query = "SELECT * FROM disease where id=".$_POST["id"];
$result = mysqli_query($conn, $query);
$count= mysqli_num_rows($result);
echo $count;
?>
<form action="update.php" method="post">
<input type="hidden" value="<?php echo $row['id'];?>" name="id"/>
Diease<input type="text" name="Disease" value="<?php echo $row['Disease'];? >"/>
SubDisease<input type="text" name="SubDisease" value="<?php echo $row['SubDisease'];?>"/>
Associated Disease<input type="text" name="Associated_Disease" value="<?php echo $row['Associated_Disease'];?>"/>
<input type="submit" value="update">
</form>
マイupdate.phpを
<?php
$conn = mysqli_connect('localhost','root','','tool');
if (!$conn) {
die("Connection failed: " . mysqli_error());
}
$disease=$_POST['Disease'];
$SubDisease=$_POST['SubDisease'];
$Associated_Disease= $_POST['Associated_Disease'];
$id = $_POST ['id'];
$update="Update disease1 set Disease='".$disease."', SubDisease='".$SubDisease."', Associated_Disease='".$Associated_Disease."' where id=".$_POST["id"];
mysqli_query($conn,$update);
?>
しかし、idが読んでされていないとidの値が更新コマンドに渡されていません。いずれかのあなたは、あなたのクエリ結果次に
$row = mysqli_fetch_assoc($result);
形成するために割り当てるからfetch data
する必要があり、この
はありがとうございましたことになります。私は必要な出力を持っています –
@ Saty.I同じフォームで削除とupdtaingの両方のための2つの送信ボタンがあります。私は再び同じ問題に直面しています。 IDは読まず、IDの値は編集ページと更新ページには渡されません –
2つの送信ボタンで新しい質問を投稿してください!あなたの新しい要件! – Saty