kohjhjhصثقص5572lllllllldfgddfgصثقffgggfffgfgfgdfgdg
Ele57885fddfg872llll82ddfgdfgdfgdfgdfgfgfggffggfgfgfghgقفغفغفقhfg555434536
/
home3
/
oraclepublicscho
/
public_html
/
Oracle_Cpanel
/
Upload FileeE
HOME
<?php include 'header.php'; include 'config.php'; ?> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <main id="main" class="main"> <div class="pagetitle"> <h1>Admission Form</h1> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index">Home</a></li> <li class="breadcrumb-item">Admission Form</li> </ol> </nav> </div><!-- End Page Title --> <section class="section"> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Admission Form</h5> <table class="table datatable"> <thead> <tr> <th scope="col">#</th> <th scope="col">Student Name</th> <th scope="col">Grade</th> <th scope="col">Date of Birth</th> <th scope="col">Parent Name</th> <th scope="col">Mobile</th> <th scope="col">Place</th> <th scope="col">Previous School</th> <th scope="col">Reference</th> <th scope="col">Enquiry Date</th> <th scope="col">Remarks</th> <th scope="col">Delete</th> </tr> </thead> <tbody> <?php $query = "SELECT * from admission_form "; $res_data = mysqli_query($connect,$query); if(mysqli_num_rows($res_data) > 0 ){ $num= $offset+1; while($row=mysqli_fetch_array($res_data)) { $id = $row['id']; ?> <tr> <th scope="row"><?php echo $num; ?></th> <td><?php echo $row['s_name']; ?></td> <td><?php echo $row['cls']; ?></td> <td><?php echo $row['dob']; ?> </td> <td><?php echo $row['name']; ?> </td> <td><?php echo $row['mobile']; ?> </td> <td><?php echo $row['loc']; ?> </td> <td><?php echo $row['presc']; ?> </td> <td><?php echo $row['reff']; ?> </td> <td><?php echo $row['edate']; ?> </td> <td><?php echo $row['descp']; ?> </td> <td> <a href="delete_ap?id=<?php echo $row['id'];?>"> <button data-toggle="tooltip" title="Delete" Onclick="return ConfirmDelete()" class="btn btn-danger btn-xs"><i class="fa fa-trash"></i></button></a> </td> </tr> <?php $num++; }} else{ ?> <tr><td align="center" colspan="12"><?php echo "No Data Available" ?></td></tr> <?php }?> </tbody> </table> <!-- End Table with stripped rows --> </div> </div> </div> </div> </section> </main><!-- End #main --> <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a> <script src="//cdn.ckeditor.com/4.9.2/standard/ckeditor.js"></script> <script type="text/javascript"> CKEDITOR.replace('descp'); </script> <!-- Vendor JS Files --> <script> function ConfirmDelete() { return confirm("Are you sure you want to delete?"); } </script> <script> function fileValidation(file){ var fileInput = file.value; var allowedExtensions = /(\.jpg|\.jpeg|\.png|\.jfif)$/i; if(!allowedExtensions.exec(fileInput)){ alert('Please upload file having extensions .jpeg/.jpg/.png/.jfif only.'); file.value = ''; file.focus(); return false; }else{ return true; } } </script> <script src="assets/vendor/apexcharts/apexcharts.min.js"></script> <script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="assets/vendor/chart.js/chart.umd.js"></script> <script src="assets/vendor/echarts/echarts.min.js"></script> <script src="assets/vendor/quill/quill.min.js"></script> <script src="assets/vendor/simple-datatables/simple-datatables.js"></script> <script src="assets/vendor/tinymce/tinymce.min.js"></script> <script src="assets/vendor/php-email-form/validate.js"></script> <!-- Template Main JS File --> <script src="assets/js/main.js"></script> </body> </html>