/
home
/
efamember
/
domains
/
efa-member.com
/
public_html
/
backoffice
/
up file
home
<?php include __DIR__ . '/hearder.php'; ?> <section class="wrapper" id="ShowBlog"> </section> <input type="hidden" id="content_page" name="content_page" value="blogs"> <?php include __DIR__ . '/footer.php'; ?> <script> $(document).ready(function() { const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); const id = urlParams.get('id') $.ajax({ type: "POST", url: "ajax/blogs/get_blogpost.php", data: { id: id }, dataType: "html", success: function(response) { $("#ShowBlog").html(response); } }); }); </script>