📁 File Manager
🏠 /
/
home
/
u857492117
/
domains
/
mangaldaicollege.org
/
public_html
Dosya Düzenle: privateViewData250.php
<?php include 'connect.php'; ?> <!DOCTYPE html> <html lang="en"> <head> <link rel="icon" href="favicon.ico" type="image/gif" sizes="16x16"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Online Apply</title> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta charset="utf-8"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!-- old --> <link rel="stylesheet" href="css/w3.css"> <link rel="stylesheet" href="css/jquery-ui.css" /> <link rel="stylesheet" href="css/templatemo_misc.css"> <link rel="stylesheet" href="css/templatemo_style.css"> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/style.css"> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery-1.11.3.min.js"></script> <script src="js/templatemo_custom.js"></script> <script src="js/jquery-ui.min.js"></script> <script src="js/clock.js"></script> <link rel="stylesheet" href="css/contact-buttons.css"> <link rel="stylesheet" href="css/font-awesome.min.css"> <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css"> <script src="js/jquery.contact-buttons.js"></script> <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdn.datatables.net/1.10.2/css/jquery.dataTables.min.css"> <script type="text/javascript" src="https://cdn.datatables.net/1.10.2/js/jquery.dataTables.min.js"></script> <body> <?php include("menu.html");?> <div class="container"> <div class="row header" style="text-align:center;color:green"> <h3>Grade III Candidate List</h3> </div> <?php $sql = "select * from online_apply"; $q = mysqli_query($con, $sql); ?> <table id="example" class="table table-striped table-bordered" style="width:100%"> <thead> <tr> <th>Name</th> <th>Father Name</th> <th>Cast</th> <th>Address</th> <th>DOB</th> <th>Phone No</th> <th>Email</th> <th>View Docs</th> </tr> </thead> <tbody> <?php while($row=mysqli_fetch_array($q)){ ?> <tr> <td><?php echo $row['name']; ?></td> <td><?php echo $row['f_name']; ?></td> <td><?php echo $row['cast']; ?></td> <td><?php echo $row['address']; ?></td> <td><?php echo $row['dob']; ?></td> <td><?php echo $row['ph']; ?></td> <td><?php echo $row['email']; ?></td> <td><a href="privateViewData250View.php?id=<?php echo $row['slNo']; ?>"><input type="button" value="View" class="btn btn-success"></a></td> </tr> <?php } ?> </tbody> </table> </div> <script> $(document).ready(function() { $('#example').DataTable(); } ); </script>
💾 Kaydet
İptal