⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
mydry
/
application
/
views
/
admin
/
View File Name :
view_slider.php
<?php if(!$this->session->userdata('id')) { redirect(base_url().'admin'); } ?> <section class="content-header"> <div class="content-header-left"> <h1>View Sliders</h1> </div> <div class="content-header-right"> <a href="<?php echo base_url(); ?>admin/slider/add" class="btn btn-primary btn-sm">Add Slider</a> </div> </section> <section class="content"> <div class="row"> <div class="col-md-12"> <?php if($this->session->flashdata('error')) { ?> <div class="callout callout-danger"> <p><?php echo $this->session->flashdata('error'); ?></p> </div> <?php } if($this->session->flashdata('success')) { ?> <div class="callout callout-success"> <p><?php echo $this->session->flashdata('success'); ?></p> </div> <?php } ?> <div class="box box-info"> <div class="box-body table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>SL</th> <th>Photo</th> <th>Heading</th> <th>Button1 Text</th> <th>Button1 URL</th> <th>Button2 Text</th> <th>Button2 URL</th> <th>Position</th> <th width="140">Action</th> </tr> </thead> <tbody> <?php $i=0; foreach ($slider as $row) { $i++; ?> <tr> <td><?php echo $i; ?></td> <td style="width:150px;"><img src="<?php echo base_url(); ?>public/uploads/<?php echo $row['photo']; ?>" alt="<?php echo $row['heading']; ?>" style="width:140px;"></td> <td><?php echo $row['heading']; ?></td> <td><?php echo $row['button1_text']; ?></td> <td><?php echo $row['button1_url']; ?></td> <td><?php echo $row['button2_text']; ?></td> <td><?php echo $row['button2_url']; ?></td> <td><?php echo $row['position']; ?></td> <td> <a href="<?php echo base_url(); ?>admin/slider/edit/<?php echo $row['id']; ?>" class="btn btn-primary btn-xs">Edit</a> <a href="<?php echo base_url(); ?>admin/slider/delete/<?php echo $row['id']; ?>" class="btn btn-danger btn-xs" onClick="return confirm('Are you sure?');">Delete</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </section>