/
home
/
efamember
/
domains
/
efa-member.com
/
public_html
/
main
/
jobs
/
up file
home
<?php require('header.php'); include('../config/main_function.php'); $secure = "cAh3DrJACzw4RbU"; $connection = connectDB($secure); ?> <div class="main-body animated fadeInRight"> <div class="row mb-3"> <div class="col-12"> <div class="card text-start "> <div class="card-header"> ข้อสมาชิก </div> <div class="card-body"> <div id="show_profile"></div> </div> <div class="card-footer text-muted"> </div> </div> </div> </div> </div> <div class="modal fade" id="myModal" role="dialog" aria-hidden="true"> <div class="modal-dialog modal-md modal-dialog-centered"> <div class="modal-content animated fadeIn"> <div id="showModal"></div> </div> </div> </div> <?php require('footer.php') ?> <script> $(document).ready(function() { GetEmployerProfile(); }); function GetEmployerProfile() { let member_id = localStorage.getItem("member_id"); $.ajax({ type: "POST", url: "ajax/employer_profile/GetProfile.php", data: { member_id:member_id }, dataType: "html", success: function(response) { $('#show_profile').html(response); } }); } </script>