我有一个包含php文件的问题
PagePrevie.php :
(function() {
$("form#form1 input, form#form1 select").on('keyup change', function() {
alert('called')
}):
}).call(this);
问题是该文件位于包含具有相同代码的其他网页的目录中
这是文件的结构:
答案 0 :(得分:0)
PHP告诉你你的路径不正确,添加“../”以便你得到正确的包含路径。
include '../include/LogoUMBB.php';
include '../include/Header.php';
include '../include/Footer.php';