問題のコードは次のようになります。
if (isset($_SESSION['logged_in'])) {
if (isset($_POST['title'], $_POST['content'], $_POST['id'])) {
$title = $_POST['title'];
$content = $_POST['content'];
$id = $_POST['id'];
}
if (empty($title) or empty($content) or empty($id)) {
$error = 'All fields are required!';
} else {
try {
$query = $pdo->prepare("UPDATE articles SET article_title = ?, article_content = ? WHERE article_id = ? ");
$query->bindValue(1, 'title');
$query->bindValue(2, 'content');
$query->bindValue(3, 'id');
$query->execute();
header('Location: index.php');
} catch (PDOException $e) {
print_r($e->errorInfo);
die();
}
}
}
エラーはまったく発生せず、テーブルは更新されません。
PS私は一般的にPHPにまったく慣れていないので、私のエラーが少し些細なものである場合は我慢してください。他に質問する人がいないだけです。