Viewing file: faqs.php (7.47 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
error_reporting(0);
include 'conn.php';
require_once "auth.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php include('title.php') ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="plugins/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="dist/css/adminlte.min.css">
<link rel="stylesheet" href="plugins/summernote/summernote-bs4.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="images/fav.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/themify-icons.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/red.css" id="style_theme">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="charts/css/morris.css">
<link rel="stylesheet" href="css/jquery-jvectormap.css">
<link rel="stylesheet" href="datatable/dataTables.bootstrap4.min.css">
<link rel="stylesheet" href="dist/css/user_css.css">
</head>
<body>
<!-- Pre Loader -->
<div class="loading">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
<!--/Pre Loader -->
<!-- Color Changer -->
<!-- /Color Changer -->
<div class="wrapper">
<!-- Sidebar -->
<?php include('sidebar.php') ?>
<!-- /Sidebar -->
<!-- Page Content -->
<div id="content">
<div>
<?php include('topbar.php') ?>
</div>
<?php
if(isset($_GET['delete_id']))
{
$query_delete="DELETE FROM faqs WHERE id='".$_GET['delete_id']."'";
$p = mysqli_query($con, $query_delete);
echo "<script>alert('Deleted Successfully');</script>
<script>window.location.href = 'faqs.php'</script>";
}
$edit = $_GET['edit'];
$resultt = mysqli_query($con,"SELECT * FROM faqs where id=".$edit."");
$roww = mysqli_fetch_array($resultt);
$location = mysqli_query($con,"SELECT * FROM faqs ORDER BY id DESC");
if(isset($_POST['add'])){
$name = $_POST['title'];
$desc = $_POST['descc'];
$name_fa = $_POST['title_fa'];
$desc_fa = $_POST['descc_fa'];
$insertdata = mysqli_query($con,"INSERT INTO faqs(title,descc,title_fa,descc_fa)VALUES('$name','$desc','$name_fa','$desc_fa')");
echo "<script>alert('Added Successfully');</script>
<script>window.location.href = 'faqs.php'</script>";
}
?>
<div class="row no-margin-padding">
<div class="col-md-6">
<h3 class="block-title">Manage FAQ</h3>
</div>
<div class="col-md-6">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.html">
<span class="ti-home"></span>
</a>
</li>
<li class="breadcrumb-item">FAQ</li>
</ol>
</div>
</div>
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2 justify-content-center">
<div class="col-sm-6">
<h1>FAQ / سوالات متداول</h1>
</div>
</div>
</div>
</section>
<div class="col-md-15">
<form action="" method="post" enctype="multipart/form-data">
<div class="card card-outline card-info">
<div class="card-header">
<div class="form-group">
<label>Enter Title</label>
<input type="text" name="title" value="<?php echo $roww["title"]; ?>" class="form-control" placeholder="Enter ...">
</div>
</div>
<div class="form-group" dir="rtl" style="text-align: right;">
<label for="title_fa" dir="rtl" style="text-align: right; padding-right: 40px;" >عنوان</label>
<input type="text" class="form-control" id="title_fa" name="title_fa" value="<?php echo $roww["title_fa"]; ?>" placeholder=" عنوان را به فارسی وارد کنید" required>
</div>
<div class="card-header">
<div class="form-group">
<label>Enter Desc..</label>
<textarea name="descc" class="textarea" placeholder="Enter ..." onfocus="clearContents(this);"><?php echo $roww["descc"]; ?></textarea>
</div>
</div>
<div class="form-group" dir="rtl" style="text-align: right;">
<label for="descc_fa" dir="rtl" style="text-align: right; padding-right: 40px;" > جزئیات </label>
<div class="mb-3">
<textarea name="descc_fa" class="textarea" placeholder=" جزئیات را به فارسی وارد کنید"
style="width: 100%; height: 200px; font-size: 14px; line-height: 18px; border: 1px solid #dddddd; padding: 10px;"><?php echo $roww["descc_fa"]; ?></textarea>
</div>
<button type="submit" name="add" class="btn btn-block btn-primary btn-lg">Add</button>
</div>
</form>
</div>
<div class="col-md-15">
<form action="" method="post" enctype="multipart/form-data">
<div class="card card-outline card-info">
<div class="card-header">
<div class="form-group">
<label>All FAQS</label>
</div>
</div>
<div class="card-header">
<table class="table">
<thead>
<tr>
<th>Titles</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
while ($location_ft = mysqli_fetch_array($location)) {
?>
<tr>
<td><?php echo $location_ft["title"]; ?></td>
<td class="text-right py-0 align-middle">
<div class="btn-group btn-group-sm">
<a href="faqs.php?edit=<?php echo $location_ft["id"]; ?>" onclick="return confirm('Are you sure?')"class="btn btn-info"><i class="fas fa-edit"></i></a>
<a href="faqs.php?delete_id=<?php echo $location_ft["id"]; ?>" onclick="return confirm('Are you sure?')" class="btn btn-danger"><i class="fas fa-trash"></i></a>
</div>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</form>
</div>
<!-- /Main Content -->
</div>
<!-- /Page Content -->
</div>
<!-- Back to Top -->
<a id="back-to-top" href="#" class="back-to-top">
<span class="ti-angle-up"></span>
</a>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="datatable/jquery.dataTables.min.js"></script>
<script src="datatable/dataTables.bootstrap4.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/custom-datatables.js"></script>
<script src="plugins/jquery/jquery.min.js"></script>
<script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="dist/js/adminlte.min.js"></script>
<script src="plugins/summernote/summernote-bs4.min.js"></script>
<script>
$(function () {
$('.textarea').summernote()
})
</script>
</body>
</html>
|