����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 3.141.32.16 Web Server : LiteSpeed System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : kwacuqig ( 988) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/kwacuqig/learn.skilltainment.org/ |
Upload File : |
<?php include './sidebar.php'; include './navbar.php'; ?> <div class="container-fluid pt-2 px-4"> <div class="row g-2"> <div class="col-12 d-flex justify-content-end"> <a href="new-playlist.php" class="bg-primary btn text-white"><i class="fa fa-plus"></i> New Playlist</a> </div> <div class="col-12"> <div class="bg-secondary rounded h-100 p-4"> <div class="table-responsive"> <table class="table playlist"> <thead> <tr> <th scope="col">Image</th> <th scope="col">Title</th> <th scope="col">Edit</th> <th scope="col">Upload</th> <th scope="col">Open</th> <th scope="col">Delete</th> </tr> </thead> <tbody> <?php $query = "SELECT * FROM `playlists` ORDER BY `pid` DESC"; $run = mysqli_query($conn, $query) or die(mysqli_error($conn)); while ($row = mysqli_fetch_array($run)) { ?> <tr> <td><img src="./playlists/img/<?php echo $row['image'];?>" class="rounded" alt=""></td> <td><?php echo $row['title'];?></td> <td><a href="playlist-edit.php?id=<?php echo $row['pid']; ?>" class="btn btn-primary"><i class="fa fa-edit"></i></a></td> <td><a href="video-upload.php?id=<?php echo $row['pid']; ?>" class="btn btn-info"><i class="fa fa-cloud-upload-alt"></i></a></td> <td><a href="playlist.php?id=<?php echo $row['pid']; ?>" class="btn btn-warning"><i class="fa fa-folder-open"></i></a></td> <td><a href="playlist-delete.php?id=<?php echo $row['pid']; ?>" onclick="return confirm('Confirm To Delete <?php echo $row['title']; ?>?')" class="btn btn-danger"><i class="fa fa-trash"></i></a></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <script> document.querySelector("title").innerText="Playlists"; document.querySelectorAll(".navbar-nav a")[1].classList.add("active"); </script> <?php include './footer.php'; ?>