Server IP : 128.199.20.84 / Your IP : 172.70.126.62 Web Server : Apache/2.4.41 (Ubuntu) System : Linux competent-maruti 5.4.0-128-generic #144-Ubuntu SMP Tue Sep 20 11:00:04 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.0.20 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF Directory (0775) : /var/www/html/admin_panel/scss/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include('header.php'); include('left_sidebar.php'); unset($_SESSION["msg"]); ?> <!-- ============================================================== --> <!-- Page wrapper --> <!-- ============================================================== --> <div class="page-wrapper"> <!-- ============================================================== --> <!-- Container fluid --> <!-- ============================================================== --> <div class="container-fluid"> <!-- ============================================================== --> <!-- Bread crumb and right sidebar toggle --> <!-- ============================================================== --> <div class="row page-titles"> <div class="col-md-5 col-8 align-self-center"> <h3 class="text-themecolor">Page List</h3> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="javascript:void(0)">Home</a></li> <li class="breadcrumb-item active">Page List</li> </ol> </div> </div> <!-- ============================================================== --> <!-- End Bread crumb and right sidebar toggle --> <!-- ============================================================== --> <!-- ============================================================== --> <!-- Start Page Content --> <!-- ============================================================== --> <!-- Row --> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <h4 class="card-title">Page List </h4> <div class="table-responsive m-t-10"> <table id="example23" class="display nowrap table table-hover table-striped table-bordered" cellspacing="0" width="100%"> <thead style="background: darkgray;color: white;"> <tr> <th>S.No.</th> <th>Pages</th> <th>View</th> </tr> </thead> <tbody> <?php $CatRs=mysqli_query($con,"select * from tp_category order by id desc") ; $cn=1; ?> <tr> <td><?php echo $cn++;?></td> <td>Newspaper Publications</td> <td><a href="view_newspaper_publications.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Secretarial Certificates</td> <td><a href="view_secretarial_certificates.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Financial Results</td> <td><a href="view_financial_results.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Annual Reports</td> <td><a href="view_annual_reports.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Download Forms</td> <td><a href="view_download_forms.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Notice of Board Meeting</td> <td><a href="view_notice_board_meeting.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Policies</td> <td><a href="view_policies.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Share Holding Pattern</td> <td><a href="view_share_holding_pattern.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>IEPF</td> <td><a href="view_iepf.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Annual Return</td> <td><a href="view_annual_return.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Notice for Postal Ballot</td> <td><a href="view_notice_postal_ballot.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>AGM Notice</td> <td><a href="view_agm_notice.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>NOTICE U/S Reg 30</td> <td><a href="view_notice_us_reg.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> <tr> <td><?php echo $cn++;?></td> <td>Related Party Transaction</td> <td><a href="view_related_party_transaction.php" class="btn btn-dark btn-circle"><i class="ti-eye"></i> </a></td> </tr> </tbody> </table> </div> </div> </div> </div> </div> <!-- ============================================================== --> <!-- End PAge Content --> <!-- ============================================================== --> <?php include('footer.php');?>