whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
papecmvm
/
public_html
/
application
/
views
/
webapp
/
Upload File:
files >> //proc/self/root/home/papecmvm/public_html/application/views/webapp/all_xml.php
<?php require_once(APPPATH.'views/webapp/header.php');?> <?php require_once(APPPATH.'views/webapp/menu.php');?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Generated XML </h1> <ol class="breadcrumb"> <li><a href="<?php echo site_url('webapp/welcome')?>"><i class="fa fa-dashboard"></i> Dashboard</a></li> <li class="active">Generated XML</li> </ol> </section> <!-- Main content --> <section class="content"> <?php $attributes = array('id' => 'formid'); echo form_open("",$attributes); ?> <!-- /.row --> <div class="row"> <div class="col-xs-12"> <div class="box box-primary"> <div class="box-header"> </div><!-- /.box-header --> <div class="box-body"> <?php if($this->session->flashdata('msg')){ echo $this->session->flashdata('msg'); } ?> <?php if(!empty($xml)){ ?> <table id="" class="table table-bordered table-striped"> <thead> <tr> <th>Generated By</th> <th>Year</th> <th>Month</th> <th>Name</th> <th>Download</th> </tr> </thead> <tbody> <?php foreach($xml as $key) { ?> <tr> <td class="text-capitalize"> <?php echo $key['name']; ?> </td> <td><?php echo $key['x_year']; ?></td> <td><?php echo $key['x_month']; ?></td> <td> <?php $p = $key['x_path']; echo $last_part = substr(strrchr($p, "/"), 1); ?> </td> <td> <a data-toggle="tooltip" data-placement="left" title="Download" href="<?php echo base_url().$key['x_path']; ?>" class="btn btn-primary" download><i class="fa fa-download"></i></a> </td> </tr> <?php } ?> </tbody> </table> <?php }else{ echo "No data found"; } ?> <span class="page"> <?php echo $this->pagination->create_links(); ?> </span> </div><!-- /.box-body --> </div><!-- /.box --> </div> </div> <!-- /.row --> <?php echo form_close(); ?> </section><!-- /.content --> </div><!-- /.content-wrapper --> <?php require_once(APPPATH.'views/webapp/footer.php');?>
Copyright ©2021 || Defacer Indonesia