How can I use $_POST to update data in a database?
703 Aug 2024
In update.php
, you can update the database record:
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "test_db";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$id = $_POST["id"];
$name = $_POST["name"];
// Prepare and bind
$stmt = $conn->prepare("UPDATE users SET name = ? WHERE id = ?");
$stmt->bind_param("si", $name, $id);
// Execute the query
if ($stmt->execute()) {
echo "Record updated successfully";
} else {
echo "Error updating record: " . $conn->error;
}
$stmt->close();
}
$conn->close();
?>
This script uses a prepared statement to update a record securely. Prepared statements help prevent SQL injection by separating SQL code from data.
See all
0 likes
Top related questions
Related queries
Latest questions
लोकसभा में वक्फ बिल पर विपक्ष बनाम सरकार।
02 Apr 2025 4
पंजाब के "येशु येशु" पादरी बजिंदर सिंह को 2018 के बलात्कार मामले में आजीवन कारावास की सजा।
01 Apr 2025 2
इस पर सही में कमाई होती है या नहीं
06 Mar 2025 18
गांधी जी का जन्म कब हुआ
06 Mar 2025 20
भारत के प्रधानमंत्री का नाम क्या है
06 Mar 2025 25
भारत की राजधानी क्या है
06 Mar 2025 19
Radhe Radhe ❤️🩹❤️🩹❤️🩹
06 Mar 2025 21