EVOLUTION-NINJA
Edit File: update_institution.php
<?php echo view('includes/admin_header.php')?> <!-- Include jQuery --> <!-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> --> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <div class="col-sm-12 col-md-offset-1 col-md-10 col-lg-offset-1 col-lg-10"> <section class="content-header"> <br> <h1>Updated Institution Data</h1> </section> <br> <br> <!-- Main content --> <section class="content enrolled_details"> <!-- Display the submitted data here in a table --> <div class="row" style="margin:0 !important;"> <div class="col-sm-6"> <h2>Institution Details</h2> <table class="table table-bordered" border="0"> <input type="hidden" name="institution_id" value="<?php echo isset($_GET['institution_id']) ? htmlspecialchars($_GET['institution_id']) : ''; ?>"> <tr> <th>Institution Name :</th> <td><?php echo isset($_GET['institution_name']) ? htmlspecialchars($_GET['institution_name']) : ''; ?></td> </tr> <tr> <th>Address :</th> <td><?php echo isset($_GET['address']) ? htmlspecialchars($_GET['address']) : ''; ?></td> </tr> <tr> <th>Email :</th> <td><?php echo isset($_GET['email']) ? htmlspecialchars($_GET['email']) : ''; ?></td> </tr> <tr> <th>Phone :</th> <td><?php echo isset($_GET['phone']) ? htmlspecialchars($_GET['phone']) : ''; ?></td> </tr> <tr> <th>Contact Person Details :</th> <td><?php echo isset($_GET['contact_person_details']) ? htmlspecialchars($_GET['contact_person_details']) : ''; ?></td> </tr> </table> </div> </div> </section> <!-- /.content --> </div> </div> <?php //echo view('includes/admin_footer.php')?> <style> .editb{ margin-top: 50px; margin-left: 200px; } </style>