我正在尝试包含一个php文件
在ajax调用的文件中。例如,下面的代码,.ajax url是search.php,所以我想包含'fiel.php';在我的search.php中,我该怎么做?
$.ajax({
url:'search.php',
data:{ search_text: $(".result_tag").text()
},
error: function(){
$('#find_members').html('<p>An error has occurred</p>');
},
success: function(data){
$("#find_members").html(data);
},
type:'POST'
});
的search.php
<?php
//this is search.php
include 'file.php';
echo test(); //try to testing
?>
file.php
//this is file.php
<?php
function test(){
echo"hello";}
?>
HTML
<div id="find_members"></div>
答案 0 :(得分:-1)
尝试包含&#39; fiel.php&#39;进入&#39; search.php&#39;文件