|
Server IP : 103.212.121.57 / Your IP : 216.73.216.123 Web Server : LiteSpeed System : Linux valor.herosite.pro 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 User : araipddz ( 1784) PHP Version : 8.2.30 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/araipddz/cytelelevators.in/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include("header.php");
include("aside.php");
if (isset($_POST['submit'])) {
// Ensure you have a database connection established (assuming $connect is your database connection)
// If not, you need to establish a connection like this:
// $connect = mysqli_connect("hostname", "username", "password", "database_name");
// Also, use mysqli_real_escape_string to prevent SQL injection
$catname = mysqli_real_escape_string($connect, $_POST['catname']);
// Ensure you enclose values in single quotes in the SQL query for strings
$query = "INSERT INTO `category`(`category_name`) VALUES ('$catname')";
$sql = mysqli_query($connect, $query);
if ($sql) {
echo "Submit";
} else {
echo "Error: " . mysqli_error($connect); // Print the actual error message for debugging
}
}
?>
<div class="container w-100 h-100 mt-5">
<button> <a class="btn btn-outline-primary" href="categoriestable.php">View Data</a></button>
<h3 class="text-center">Categories</h3>
<div class="row">
<div class="col-md-6 mt-5">
<form method="post">
<div class="form-group">
<label for="catname">Categories Name:</label>
<input type="text" class="form-control" name="catname" id="catname" placeholder="Categories Name">
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary" name="submit">Submit</button>
</form>
</div>
</div>
</div>
<?php include("footer.php"); ?>