OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
3-31-025chanakya
/
education-podcasts
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2025 06:36:42 AM
rwxr-xr-x
📄
database.sql
592 bytes
03/31/2025 06:36:42 AM
rw-r--r--
📄
fetchRSS.php
950 bytes
03/31/2025 06:36:42 AM
rw-r--r--
📁
includes
-
03/31/2025 06:36:42 AM
rwxr-xr-x
📄
index.php
1.09 KB
03/31/2025 06:36:42 AM
rw-r--r--
📄
podcast.php
2.05 KB
03/31/2025 06:36:42 AM
rw-r--r--
📄
style.css
0 bytes
03/31/2025 06:36:42 AM
rw-r--r--
📄
upload.php
683 bytes
03/31/2025 06:36:42 AM
rw-r--r--
📁
uploads
-
03/31/2025 06:36:42 AM
rwxr-xr-x
Editing: index.php
Close
<?php include "includes/fetchPodcasts.php"; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Education Podcasts</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"> </head> <body class="container"> <h2 class="mt-4">Education Podcasts</h2> <a href="upload.php" class="btn btn-primary">Upload OPML</a> <a href="fetchRSS.php" class="btn btn-success">Update Episodes</a> <div class="row mt-4"> <?php foreach ($podcasts as $podcast): ?> <div class="col-md-4"> <div class="card mb-3"> <div class="card-body"> <h5 class="card-title"><?= $podcast['title'] ?></h5> <p class="card-text">Total Episodes: <?= $podcast['total_episodes'] ?></p> <a href="podcast.php?id=<?= $podcast['id'] ?>" class="btn btn-primary">View Episodes</a> </div> </div> </div> <?php endforeach; ?> </div> </body> </html>