zkt24/z2/edit.php
2024-04-25 16:35:23 +00:00

21 lines
687 B
PHP

<?php
require "config/database.php";
$db =conectarDB();
if ($db->connect_errno) {
// Print the connection error message
echo "Failed to connect to MySQL: " . mysqli_connect_error();
// You can also log the error message to a file or other logging mechanism
// error_log("Failed to connect to MySQL: " . mysqli_connect_error());
exit(); // Exit the script if there's a connection error
}
if($_POST){
$noteID = $_POST['id'];;
$note = mysqli_real_escape_string($db,$_POST['note']);;
$query = "UPDATE nota SET noteContent = '$note' where id = $noteID";
mysqli_query($db,$query);
}
mysqli_close($db);
header("Location:../index.php");