芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/socialsolargreens.pk/Services-List.php
<?php include_once('controller/ServicesController.php'); include 'partial/link.php'; include 'partial/header.php'; include 'partial/navbar.php'; $Services = new ServicesController(); $Services_List = $Services->servicesList(); ?> <!-- ============================================================== --> <!-- Start right Content here --> <!-- ============================================================== --> <div class="main-content"> <div class="page-content"> <div class="container"> <!-- start page title --> <div class="row"> <div class="col-md-12"> <a class="btn btn-success fa-pull-right " style="margin-left:30px" href="<?=BASE_URL?>Create-New-Service.php"><i class="fa fa-plus-circle"></i> Create New</a> </div> <div class="col-12" style="margin-top:20px"> <div class="card"> <div class="card-body"> <h5><i class="fa fa-table"></i> Service Table</h5> <hr> <table id="datatable" class="table table-striped table-bordered nowrap dataTable" style="border-collapse: collapse; border-spacing: 0; width: 100%;" role="grid" aria-describedby="datatable_info"> <thead> <tr role="row"><th class="sorting_desc" tabindex="0" aria-controls="datatable" rowspan="1" colspan="1" aria-sort="descending" aria-label="Id: activate to sort column ascending" style="width: 170.328px;">Id</th><th class="sorting" tabindex="0" aria-controls="datatable" rowspan="1" colspan="1" aria-label="Service: activate to sort column ascending" style="width: 308.922px;">Service</th><th class="sorting" tabindex="0" aria-controls="datatable" rowspan="1" colspan="1" aria-label="Action: activate to sort column ascending" style="width: 286.75px;">Action</th></tr> </thead> <tfoot> <tr><th rowspan="1" colspan="1"><div class="position-relative"><input type="text" class="searchformcontrol" placeholder=""><span class="searchspan bx bx-search-alt"></span></div></th><th rowspan="1" colspan="1"><div class="position-relative"><input type="text" class="searchformcontrol" placeholder=""><span class="searchspan bx bx-search-alt"></span></div></th><th rowspan="1" colspan="1"></th></tr> </tfoot> <tbody> <?php while($row = mysqli_fetch_assoc($Services_List)){ //print_r($row); ?> <tr role="row" class="odd"> <td class="sorting_1"><?= $row['Id']; ?></td> <td><?= $row['Name']; ?></td> <td> <a onclick="return confirm('Are you sure you want to Execute ?');" class="badge badge-success" data-toggle="tooltip" data-placement="left" title="" href="<?=BASE_URL?>Create-New-Service.php?q=Edit&id=<?= $row['Id']; ?>" data-original-title="Click Me To Edit"><i class="fa fa-edit"></i></a> <a onclick="return confirm('Are you sure you want to Execute ?');" class="badge badge-danger" data-toggle="tooltip" data-placement="left" title="" href="<?=BASE_URL?>Create-New-Service.php?q=delete&id=<?= $row['Id']; ?>" data-original-title="Click Me To Del"><i class="fa fa-trash-alt"></i></a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> <!-- end col --> </div> <!-- end row --> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <?php include 'partial/footer.php'; ?>
Error 404 (Not Found)
404
Page not found.
Back To Home