Skip to content

Instantly share code, notes, and snippets.

@shohag-cse-knu
Created December 17, 2024 08:58
Show Gist options
  • Save shohag-cse-knu/b9fac00acaa20530969e247c98465d4e to your computer and use it in GitHub Desktop.
Save shohag-cse-knu/b9fac00acaa20530969e247c98465d4e to your computer and use it in GitHub Desktop.
AJAX request is being checked from PHP script
<?php
//only ajax request can connect this file
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest')
{
//CODE HERE
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment