Server IP : 184.154.167.98 / Your IP : 3.144.35.147 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/libreria/ |
Upload File : |
<?php require_once 'connect.php'; if(ISSET($_POST['edit_book'])){ $book_title = $_POST['book_title']; $book_desc = $_POST['book_desc']; $book_category = $_POST['book_category']; $book_author = $_POST['book_author']; $date_publish = $_POST['date_publish']; $qty = $_POST['qty']; $conn->query("UPDATE `book` SET `book_title` = '$book_title', `book_description` = '$book_desc', `book_category` = '$book_category', `book_author` = '$book_author', `date_publish` = '$date_publish', `qty` = '$qty' WHERE `book_id` = '$_REQUEST[book_id]'") or die(mysqli_error()); echo ' <script type = "text/javascript"> alert("Guardar Cambios"); window.location = "book.php"; </script> '; }