SM0 She11
Path:
/
/
home
/
saienerg
/
public_html
/
intra
Full Path (server): /home/saienerg/public_html/intra
Create Fil3
Upl04d Fil3
📄 ajax1.php
[E]
[D]
[R]
📄 article_list.php
[E]
[D]
[R]
📁 assets
Open
[D]
[R]
📁 career
Open
[D]
[R]
📄 career_enquiries.php
[E]
[D]
[R]
📄 cat_load.php
[E]
[D]
[R]
📁 change
Open
[D]
[R]
📄 cmn_lib.php
[E]
[D]
[R]
📄 common.php
[E]
[D]
[R]
📄 compressImage.php
[E]
[D]
[R]
📄 config.php
[E]
[D]
[R]
📁 css
Open
[D]
[R]
📁 dashboard
Open
[D]
[R]
📁 data
Open
[D]
[R]
📁 fonts
Open
[D]
[R]
📄 foo_scripts.php
[E]
[D]
[R]
📄 foo_scripts1.php
[E]
[D]
[R]
📄 footer.php
[E]
[D]
[R]
📄 footer1.php
[E]
[D]
[R]
📄 form.php
[E]
[D]
[R]
📁 gallery
Open
[D]
[R]
📄 getExtension.php
[E]
[D]
[R]
📄 header.php
[E]
[D]
[R]
📄 header1.php
[E]
[D]
[R]
📁 hrrepo
Open
[D]
[R]
📁 images
Open
[D]
[R]
📁 includes
Open
[D]
[R]
📄 index.php
[E]
[D]
[R]
📄 index1.php
[E]
[D]
[R]
📄 kis_config.php
[E]
[D]
[R]
📄 login.php
[E]
[D]
[R]
📄 logout.php
[E]
[D]
[R]
📁 masters
Open
[D]
[R]
📁 others
Open
[D]
[R]
📁 perfomances
Open
[D]
[R]
📁 products
Open
[D]
[R]
📄 products.js
[E]
[D]
[R]
📁 services
Open
[D]
[R]
📄 sidebar.php
[E]
[D]
[R]
📄 sidebar1.php
[E]
[D]
[R]
📄 spel_config.php
[E]
[D]
[R]
📄 top_nav.php
[E]
[D]
[R]
📄 top_nav1.php
[E]
[D]
[R]
📁 users
Open
[D]
[R]
Editing: index1.php
<!doctype html> <html lang="en"> <head> <?php include('header1.php'); ?> </head> <body> <div class="wrapper"> <?php include('sidebar1.php'); ?> <div class="main-panel"> <?php include('top_nav1.php'); ?> <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-6"> <button class="btn btn-primary btn-fill" id="ad_btn"><i class="glyphicon glyphicon-plus-sign"></i> Add</button> <button class="btn btn-warning btn-fill" id="vw_btn"><i class="glyphicon glyphicon-list-alt"></i> View</button> <button class="btn btn-edit btn-fill" id="ed_btn"><i class="glyphicon glyphicon-edit"></i> Edit</button> <button class="btn btn-danger btn-fill"><i class="glyphicon glyphicon-trash"></i> Delete</button> <!-- <button class="btn btn-default btn-fill" id="pr_btn"><i class="pe-7s-print"></i> Print</button>--> </div> <div class="col-md-6"> <ul class="breadcrumb"> <li><a>Masters</a></li> <li class="active" ><a >Customer Profile</a></li> </ul> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="header"> <h3 class="lstt">Customer List</h3> </div> <div class="content"> <div class="row"> <div class="col-md-12"> <table id="example" class="table table-striped table-bordered" style="width:100%"> <thead class="thd"> <tr> <th width="5%">#</th> <th width="5%">S.No.</th> <th width="15%">Name</th> <th width="15%">Contact Person</th> <th width="30%">Address</th> <th width="15%">Phone Number</th> <th width="15%">Mobile Number</th> </tr> </thead> <tbody></tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div> <?php include('footer1.php'); ?> </div> </div> <?php include('foo_scripts1.php'); ?> <script type="text/javascript"> //////add $('#ad_btn').click(function () { window.location.href="cus_ad.php"; }); /////view $('#vw_btn').click(function () { window.location.href="cus_vw.php"; }); ////edit $('#ed_btn').click(function () { window.location.href="cus_ed.php"; }); ///////table $(document).ready(function() { var table = $('#example').DataTable( { // responsive: true } ); } ); </script> </body> </html>
Save