Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie verwendet man PATCH zum Aktualisieren eines einfachen Datenbankfelds?

Ich habe eine Problemumgehung mit POST gefunden. Ich bin ein Anfänger, wenn es einen besseren Weg gibt, antworten Sie bitte.

<?php
if(isset($_POST)){  

    $con = mysqli_connect("localhost", "root", "root","wordpress");
    $sql = "UPDATE `trainsample` SET `Location`='".$_POST['Location']."', 
            `Data`='".$_POST['Data']."' WHERE `Name`='".$_POST['Name']."'";
    if (mysqli_query($con, $sql)) {
        echo "Record updated successfully";
    } 
    else {
        echo "Error updating record: " . mysqli_error($con);
    }

    mysqli_close($con);
}
else
{
    echo "Data Not found ";
}
?>