我想在按钮点击时加载模板users.php
,但不允许直接访问它。
我得到"不允许直接访问",加载方式如下所示。
加载具有直接访问限制的php文件异步(没有页面重新加载)的最佳方法是什么?
的index.php
<?php #main page
define('MyConst', TRUE);
?>
$( "#btn" ).load( "users.php" ); //template to be loaded on button click
users.php:
<?php #the template
if(!defined('MyConst')) {
die('Direct access not allowed');
exit;
}
?>
结果:不允许直接访问