D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vitalityhealth
/
www
/
s
/
Filename :
faq.php
back
Copy
<?php include 'cn.php'; session_start(); if(isset($_SESSION['username'])) { } else { header("location:login.php"); } ?> <!doctype html><html class="fixed dark" data-style-switcher-options="{'backgroundColor': 'dark'}"> <head> <!-- Basic --> <meta charset="UTF-8"> <title>Admin Panel</title> <!-- Mobile Metas --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- Web Fonts --> <link href="css?family=Poppins:300,400,500,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css"> <!-- Vendor CSS --> <link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.css"> <link rel="stylesheet" href="vendor/animate/animate.compat.css"> <link rel="stylesheet" href="vendor/font-awesome/css/all.min.css"> <link rel="stylesheet" href="vendor/boxicons/css/boxicons.min.css"> <link rel="stylesheet" href="vendor/magnific-popup/magnific-popup.css"> <link rel="stylesheet" href="vendor/bootstrap-datepicker/css/bootstrap-datepicker3.css"> <!-- Specific Page Vendor CSS --> <link rel="stylesheet" href="vendor/select2/css/select2.css"> <link rel="stylesheet" href="vendor/select2-bootstrap-theme/select2-bootstrap.min.css"> <link rel="stylesheet" href="vendor/datatables/media/css/dataTables.bootstrap5.css"> <!-- Theme CSS --> <link rel="stylesheet" href="css/theme.css"> <!-- Theme Custom CSS --> <link rel="stylesheet" href="css/custom.css"> <!-- Head Libs --> <script src="vendor/modernizr/modernizr.js"></script> <script src="master/style-switcher/style.switcher.localstorage.js"></script> </head> <body> <section class="body"> <!-- start: header --> <?php include("header.php"); ?> <!-- end: header --> <div class="inner-wrapper"> <!-- start: sidebar --> <?php include("leftnav.php"); ?> <!-- end: sidebar --> <section role="main" class="content-body"> <header class="page-header"> <h2>All Calculatorss</h2> <a href="add-faq.php"> <button type="button" class="mb-1 mt-1 me-1 btn btn-success"><i class="fa fa-plus"></i> Add FAQ</button></a> <div class="right-wrapper text-end"> <ol class="breadcrumbs"> <li> <a href="index.php"> <i class="bx bx-home-alt"></i> </a> </li> <li><span>All FAQ</span></li> </ol> <a class="sidebar-right-toggle" data-open="sidebar-right"><i class="fas fa-chevron-left"></i></a> </div> </header> <!-- start: page --> <div class="row"> <div class="col"> <section class="card"> <header class="card-header"> <div class="card-actions"> <a href="#" class="card-action card-action-toggle" data-card-toggle=""></a> </div> <h2 class="card-title">All FAQs</h2> <a href="add-faq.php"> <button type="button" class="mb-1 mt-1 me-1 btn btn-success"><i class="fa fa-plus"></i> Add FAQ</button></a> </header> <div class="card-body"> <table class="table table-bordered table-striped mb-0" id="datatable-tabletools"> <thead> <tr> <th>Sno</th> <th>Title</th> <th>Question</th> <th>Answer</th> <th>Action</th> </tr> </thead> <tbody> <?php $sql ="SELECT * FROM `faq`"; $run =mysqli_query($con,$sql); $i=1; while($row = $run->fetch_assoc()) { ?> <tr> <td><?php echo $i; ?></td> <td><?php echo $row['title']; ?></td> <td><?php echo $row['question']; ?></td> <td><?php $string = $row['answer']; $string = (strlen($string) > 50)?substr($string,0,100).'... ' : $string; echo $string; ?></td> <td> <a href="edit-faq1.php?id=<?php echo $row['id']; ?>"> <button type="button" class="mb-1 mt-1 me-1 btn btn-success"><i class="fa fa-pencil"></i> Edit</button></a> <a href="delete-faq.php?id=<?php echo $row['id']; ?>"> <button type="button" class="mb-1 mt-1 me-1 btn btn-danger"><i class="fa fa-times"></i> Delete</button> </a> </td> </tr> <?php $i++; }?> </tbody> </table> </div> </section> </div> </div> <!-- end: page --> </section> </div> <?php include("rightnav.php"); ?> </section> <!-- Vendor --> <script src="vendor/jquery/jquery.js"></script> <script src="vendor/jquery-browser-mobile/jquery.browser.mobile.js"></script> <script src="vendor/jquery-cookie/jquery.cookie.js"></script> <script src="vendor/popper/umd/popper.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="vendor/bootstrap-datepicker/js/bootstrap-datepicker.js"></script> <script src="vendor/common/common.js"></script> <script src="vendor/nanoscroller/nanoscroller.js"></script> <script src="vendor/magnific-popup/jquery.magnific-popup.js"></script> <script src="vendor/jquery-placeholder/jquery.placeholder.js"></script> <!-- Specific Page Vendor --> <script src="vendor/select2/js/select2.js"></script> <script src="vendor/datatables/media/js/jquery.dataTables.min.js"></script> <script src="vendor/datatables/media/js/dataTables.bootstrap5.min.js"></script> <script src="vendor/datatables/extras/TableTools/Buttons-1.4.2/js/dataTables.buttons.min.js"></script> <script src="vendor/datatables/extras/TableTools/Buttons-1.4.2/js/buttons.bootstrap4.min.js"></script> <script src="vendor/datatables/extras/TableTools/Buttons-1.4.2/js/buttons.html5.min.js"></script> <script src="vendor/datatables/extras/TableTools/Buttons-1.4.2/js/buttons.print.min.js"></script> <script src="vendor/datatables/extras/TableTools/JSZip-2.5.0/jszip.min.js"></script> <script src="vendor/datatables/extras/TableTools/pdfmake-0.1.32/pdfmake.min.js"></script> <script src="vendor/datatables/extras/TableTools/pdfmake-0.1.32/vfs_fonts.js"></script> <!-- Theme Base, Components and Settings --> <script src="js/theme.js"></script> <!-- Theme Custom --> <script src="js/custom.js"></script> <!-- Theme Initialization Files --> <script src="js/theme.init.js"></script> <!-- Analytics to Track Preview Website --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-42715764-8', 'auto'); ga('send', 'pageview'); </script> <!-- Examples --> <script src="js/examples/examples.datatables.default.js"></script> <script src="js/examples/examples.datatables.row.with.details.js"></script> <script src="js/examples/examples.datatables.tabletools.js"></script> </body> </html>