%PDF- %GIF98; %PNG;
 
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin/  | 
Upload File :  | 
<?php
include "top.php";
?>
<div class="content-wrapper">
<section class="content-header sty-one">
<h1>faq</h1>
<ol class="breadcrumb">
<li><a href="dashboard.php">Home</a></li>
<li><i class="fa fa-angle-right"></i> faq</li>
</ol>
</section>
<section class="content">
    <div class="panel-heading"><a href="faqadd.php" class="btn btn-round btn-primary" >Add New Record</a></div>
        <div class="table-responsive">
            <table id="example1" class="table table-bordered table-striped">
                <thead>
                <tr>
                    <th>ID</th>
                    <th>NAME</th>
                    <th>DESCRIPTION</th>
                    <th>ACTION</th>
                </tr>
                </thead>
                <tbody>
                    <?php
                    $i=1;
                    $query="select * from faq order by name";
                    $result=mysqli_query($c,$query);
                    while($row	=	mysqli_fetch_array($result))
                    {
                    ?>
                        <tr>
                            <td><?php echo $i++;?></td>
                            <td><?php echo $row['name'];?></td>
                            <td><?php echo stripslashes($row['description']);?></td>
                            <td>
                            <a href="faqedit.php?id=<?php echo $row['id'];?>" class="btn btn-outline btn-default"  title="Active"><i class="fa fa-pencil"></i></a>
                            <a onclick="return deleterecord('delete.php?id=<?php echo $row['id'];?>&table=faq&page=faq.php')" href=""  class="btn btn-outline btn-default" ><i class="fa fa-trash"></i></a>
                            </td>
                        </tr>
                    <?php
                    }
                    ?>
            </table>
        </div>
</section>
<?php
include "footer.php";
?>