]]jkjjgdjffksdkdfdkfjgsldkfhgjkgjkhjkgjkdascxvxcvxcvjdklfgjslkdfgjlskdfgjdskfgj
במ12[aspddfsdfsdfdrxcvxcvcxvxcvxcvxcvxcvxcvxcvxcvxcvxxvxcvxcvxcv;'
/
home
/
u893294702
/
domains
/
millennium-mps.org
/
public_html
/
admin
/
Upload FileeE
HOME
<?php include('security.php'); include('includes/header.php'); include('includes/navbar.php'); ?> <div class="container-fluid"> <!-- DataTales Example --> <div class="card shadow mb-4"> <div class="card-header py-3"> <h6 class="m-0 font-weight-bold text-primary">EDIT FACULTY</h6> </div> <div class="card-body"> <?php if (isset($_POST['fedit_btn'])) { $id = $_POST['fedit_id']; $query = "SELECT * FROM fboard WHERE id='$id' "; $query_run = mysqli_query($connection, $query); foreach ($query_run as $row) { ?> <form action="code.php" method="POST"> <input type="hidden" name="edit_f_id" value="<?php echo $row['id'] ?>"> <div class="modal-body"> <div class="form-group"> <label>Image</label> <input type="text" name="edit_fimg" value="<?php echo $row['fimg'] ?>" class="form-control" placeholder="Enter Name"> </div> <div class="form-group"> <label>Name</label> <input type="text" name="edit_fname" value="<?php echo $row['fname'] ?>" class="form-control" placeholder="Enter Name"> </div> <div class="form-group"> <label>Rank</label> <input type="text" name="edit_des" value="<?php echo $row['des'] ?>" class="form-control checking_email" placeholder="Enter Rank"> </div> <div class="form-group"> <label>Percentage</label> <input type="text" name="edit_exp" value="<?php echo $row['exp'] ?>" class="form-control" placeholder="Enter Percentage"> </div> <div class="form-group"> <label>Year</label> <input type="text" name="edit_qual" value="<?php echo $row['qual'] ?>" class="form-control" placeholder="Enter Year"> </div> </div> <a href="fboard.php" class="btn btn-danger"> CANCEL </a> <button type="submit" name="f_update_btn" class="btn btn-primary">UPDATE</button> </form> <?php } } ?> </div> </div> </div> </div>