kohjhjhصثقص5572lllllllldfgddfgصثقffgggfffgfgfgdfgdg
Ele57885fddfg872llll82ddfgdfgdfgdfgdfgfgfggffggfgfgfghgقفغفغفقhfg555434536
/
home3
/
oraclepublicscho
/
public_html
/
Oracle_Cpanel
/
Upload FileeE
HOME
<?php include 'header.php'; include 'config.php'; ?> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <main id="main" class="main"> <div class="pagetitle"> <h1>Testimonials</h1> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index">Home</a></li> <li class="breadcrumb-item">Testimonials</li> </ol> </nav> </div><!-- End Page Title --> <section class="section"> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Testimonials</h5> <?php if(isset($_POST['submit'])) { $title = $_POST['title']; $descp = $_POST['descp']; $c_int = "INSERT INTO testi (title,descp) VALUES ('$title','$descp')"; $c_rty = mysqli_query($connect,$c_int); if($c_rty) { ?> <div class="alert msg" role="alert" style="text-align: center;color:green;font-size: 20px;margin-top: 21px;"> Inserted Successfully </div> <?php } } ?> <!-- Vertical Form --> <form class="row g-3" method="post" enctype="multipart/form-data"> <div class="col-12"> <label for="inputNanme4" class="form-label">Name</label> <input type="text" class="form-control" name="title" id="inputNanme4" required> </div> <div class="col-12"> <label for="inputNanme4" class="form-label">Message</label> <textarea name="descp" rows="5" id="descp" class="form-control"> </textarea> </div> <div class="text-center"> <button type="submit" name="submit" class="btn btn-primary">Submit</button> </div> </form><!-- Vertical Form --> </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Testimonials</h5> <table class="table datatable"> <thead> <tr> <th scope="col">#</th> <th scope="col">Name</th> <th scope="col">Edit</th> </tr> </thead> <tbody> <?php $query = "SELECT * from testi "; $res_data = mysqli_query($connect,$query); if(mysqli_num_rows($res_data) > 0 ){ $num= $offset+1; while($row=mysqli_fetch_array($res_data)) { $id = $row['id']; ?> <tr> <th scope="row"><?php echo $num; ?></th> <td><?php echo $row['title']; ?></td> <td><a href="edit_testi?id=<?php echo $row['id'];?>"> <button data-toggle="tooltip" title="Edit" class="btn btn-green btn-xs"><i class="fa fa-edit"></i></button></a> </td> </tr> <?php $num++; }} else{ ?> <tr><td align="center" colspan="12"><?php echo "No Data Available" ?></td></tr> <?php }?> </tbody> </table> <!-- End Table with stripped rows --> </div> </div> </div> </div> </section> </main><!-- End #main --> <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a> <script src="//cdn.ckeditor.com/4.9.2/standard/ckeditor.js"></script> <script type="text/javascript"> CKEDITOR.replace('descp'); </script> <!-- Vendor JS Files --> <script> function ConfirmDelete() { return confirm("Are you sure you want to delete?"); } </script> <script src="assets/vendor/apexcharts/apexcharts.min.js"></script> <script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="assets/vendor/chart.js/chart.umd.js"></script> <script src="assets/vendor/echarts/echarts.min.js"></script> <script src="assets/vendor/quill/quill.min.js"></script> <script src="assets/vendor/simple-datatables/simple-datatables.js"></script> <script src="assets/vendor/tinymce/tinymce.min.js"></script> <script src="assets/vendor/php-email-form/validate.js"></script> <!-- Template Main JS File --> <script src="assets/js/main.js"></script> </body> </html>