初心者です。データベースの更新をしたいのですが、更新がされず原因が分からず困っています。エラー表示はされず動作はするのですが値が更新されない状況です。
受ける側のphpファイルの「$sql = "UPDATE users set username = '$name', mail = '$mail' where id = '$id';"」の文がおかしいのでしょうか?よろしくお願い致します。
↓
↓
↓
↓
↓
◎update.php
<?php require_once("common.php"); $id = $_POST["id"]; $name = $_POST["username"]; $mail = $_POST["mail"]; try { $sql = "UPDATE users set username = '$name', mail = '$mail' where id = '$id';" $stmt = $pdo->query($sql); header("Location: list.php"); exit; } catch (Exception $e) { echo $e->getMessage(); }回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/25 09:34