Server IP : 184.154.167.98 / Your IP : 3.149.29.192 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['save_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("INSERT INTO `book` VALUES('', '$book_title', '$book_desc', '$book_category', '$book_author', '$date_publish', '$qty')") or die(mysqli_error()); echo' <script type = "text/javascript"> alert("Successfully saved data"); window.location = "book.php"; </script> '; }