Skip to content

Instantly share code, notes, and snippets.

@royce002
Created October 26, 2017 19:02
Show Gist options
  • Save royce002/72b94143f3c803258e569e0c02a6a7fd to your computer and use it in GitHub Desktop.
Save royce002/72b94143f3c803258e569e0c02a6a7fd to your computer and use it in GitHub Desktop.
Define a constant between pages for security
<?php
if(!defined('MyConstant')) {
die('Direct access not permitted');
}
?>
<?php
define('MyConstant', TRUE);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment