OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
scss
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/22/2024 04:05:28 AM
rwxr-xr-x
📄
_about.scss
186 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_buttons.scss
475 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_contact.scss
702 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_masthead.scss
1.01 KB
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_mixins.scss
10 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_navbar.scss
1.53 KB
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_projects.scss
412 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_signup.scss
596 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
_variables.scss
353 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
grayscale.scss
584 bytes
02/11/2020 10:49:34 AM
rw-rw-r--
📄
schedule_list.php
1.48 KB
02/11/2020 10:49:34 AM
rw-rw-r--
📄
style.scss
8.72 KB
02/11/2020 10:49:34 AM
rw-rw-r--
Editing: schedule_list.php
Close
<?php session_start(); if(isset($_SESSION['user'])) { $user = $_SESSION['user'];}; $current = 'mycollection'; include 'header.php'; ?> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style_table.css"> <div class="content"> <div class="single"> <table class="rwd-table"> <tr> <th>Title</th> <th>Schedule Date</th> <th>Action</th> </tr> <?php $schedule_select="Select id, title,schedule_date from mycollection where user_email='".$user."'"; $result = mysqli_query($db, $sql); if (mysqli_num_rows($result) > 0) { // output data of each row while($row = mysqli_fetch_assoc($result)) { $sc_id=$_row['id']; $sc_title=$row['title']; $sc_date=$row['schedule_date']; ?> <tr> <td data-th="Movie Title"><?php ?></td> <td data-th="Genre"><?php ?></td> <td data-th="Year"><a class="read" href="#" style="float: right;margin-top: 3%;" data-toggle="modal" data-target="#<?php echo $cid;?>">Re-schedule</a></td> <td data-th="Gross"><a href="delete_schedule.php?title_id=<?php echo $item["$sc_id"]; ?>" class="btn btn-danger" onclick="return confirm('Delete Permanently?')"><i class="fa fa-trash"></i></a></td> </tr> <?php }}?> </table> </div> <script src="js/index_table.js"></script> </div>