ok
Direktori : /home2/selectio/www/wedding-info-new/admin/modal/employee/ |
Current File : /home2/selectio/www/wedding-info-new/admin/modal/employee/employee-status.php |
<?php include("../../api/config/config.php"); $id=$_REQUEST['id']; $statement = $pdo->prepare("SELECT * FROM `tbl_employee_personaldata` where id = ".$id); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); ?> <div class="modal" id="myModal" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Remarks </h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form id='qc_update_form' method='post'> <div class="modal-body"> <input type='hidden' name='id' value='<?=$id?>' /> <div class="form"> <label for="floatingInputFilled">Name </label> <input type="text" class="form-control" readonly value='<?=$result[0]['fname']?>' id="floatingInputFilled" placeholder="John Doe" aria-describedby="floatingInputFilledHelp"> <span class="form-focused"></span> </div> <div class="form"> <label for="exampleFormControlSelect1">Enter the Remarks</label> <select name='status' class="form-select" id="exampleFormControlSelect1" aria-describedby="floatingInputFilledHelp"> <option selected="">Choose the status</option> <option value="0">Not Verified</option> <option value="1">Verified</option> </select> </div> <div class="form "> <label for="exampleFormControlTextarea1">Remarks</label> <textarea name='qc_call_remarks' class="form-control h-px-100" id="exampleFormControlTextarea1" aria-describedby="floatingInputFilledHelp" placeholder="Comments here..."><?=$datas[0]['qc_call_remarks']?></textarea> <sider-quick-compose-btn data-gpts-theme="light"></sider-quick-compose-btn></div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-secondary">Submit</button> </div> </form> </div> </div> </div>