Server IP : 2a02:4780:11:1359:0:1d43:a566:2 / Your IP : 216.73.216.161 Web Server : LiteSpeed System : Linux in-mum-web1259.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u490972518 ( 490972518) PHP Version : 5.6.40 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : ON | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u490972518/domains/ppschool.org.in/public_html/gsmps/app/plugins/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include('php-includes/connect.php'); include('php-includes/check-login.php'); $userid = $_SESSION['userid']; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Video </title> <!-- Google Font: Source Sans Pro --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> <!-- Font Awesome Icons --> <link rel="stylesheet" href="plugins/fontawesome-free/css/all.min.css"> <!-- overlayScrollbars --> <link rel="stylesheet" href="plugins/overlayScrollbars/css/OverlayScrollbars.min.css"> <!-- Theme style --> <link rel="stylesheet" href="dist/css/adminlte.min.css"> </head> <script src="https://cdnjs.cloudflare.com/ajax/libs/croppie/2.6.5/croppie.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/croppie/2.6.5/croppie.min.css" /> <body class="hold-transition dark-mode sidebar-mini layout-fixed layout-navbar-fixed layout-footer-fixed"> <div class="wrapper"> <!-- Navbar --> <?php include('link/menu.php')?> <!-- /.navbar --> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <!-- /.content-header --> <!-- Main content --> <section class="content"> <div class="container-fluid"> <!-- Student Profile --> <?php $sel1="select * from video where class='$class' and status='' order by id desc "; $res1=mysqli_query($conn,$sel1); ?> <style> td{font-size:15px} th{font-size:15px} </style> <link href="jq/jquery.dataTables.min.css" type="text/css" rel="stylesheet"/> <link href="jq/buttons.dataTables.min.css" type="text/css" rel="stylesheet"/> <link href="/your-path-to-fontawesome/css/fontawesome.css" rel="stylesheet"> <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script> <script src="jq/jquery.dataTables.min.js"></script> <script src="jq/dataTables.buttons.min.js"></script> <script src="jq/buttons.flash.min.js"></script> <script src="jq/jszip.min.js"></script> <script src="jq/pdfmake.min.js"></script> <script src="jq/vfs_fonts.js"></script> <script src="jq/buttons.html5.min.js"></script> <script src="jq/buttons.print.min.js"></script> <script> $(document).ready(function() { $('#example').DataTable( { fixedHeader: true, dom: 'Bfrtip', lengthMenu: [ [ 10, 25, 50, -1 ], [ '10 rows', '25 rows', '50 rows', 'Show all' ] ], buttons: [ 'pageLength','print','excel', { extend: 'pdfHtml5', footer: true, orientation: 'protland', pageSize: 'LEGAL' } ] } ); } ); </script> <div class="card shadow-sm"> <div class="card-header bg-transparent border-0"> <h3 class="mb-0"><i class="far fa-clone pr-1"></i>Video Show<span style='font-size:25px;font-weight:bold;color:'>→</span></h3> </div> <div class="card-body pt-0"> <div class="table-responsive"> <table id="example" class="display nowrap" cellspacing="0" width="100%" border="1px"> <thead> <tr > <td> Sr </td> <td> </td> </tr> </thead> <tbody> <?php $s=1; $total=0; while($row41=mysqli_fetch_array($res1,MYSQLI_BOTH)) { ?> <tr style='font-size:15px'> <td style='font-size:15px;color:white'><?php echo $s?></td> <td style='font-size:15px;color:white'><iframe style="width:90%;height:90%" src="https://www.youtube.com/embed/<?php echo $row41['link'];?>" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <br/>  <?php echo $row41['subject']?> ,  <?php echo $row41['class']?>  <?php echo date("d/m/Y", strtotime($row41['date'])); ?></td> </tr> <?php $s++; } ////////// /////////// ?> <tfoot> <tr> <td> Sr </td> <td> </td> </tr> </tfoot> </tbody> </table> </div> </div> </div> <!-- /.info-box --> </div> <a href='app.php'><button type="button" class="btn btn-danger btn-lg btn-block">Click For Back</button></a> <!-- /.col --> </div> <!-- /.row --> <!-- /.row --> <!-- Main row --> <div class="row"> <!-- Left col --> <!-- /.content-wrapper --> <!-- Control Sidebar --> <!-- /.control-sidebar --> <!-- Main Footer --> <?php include('link/footer.php');?> </div> <!-- ./wrapper --> <!-- REQUIRED SCRIPTS --> <?php include('link/jquery.php')?> </body> </html>