我想对 php 执行 jquery 请求,然后我希望 php 返回一个 html 值,该值将附加在原始页面上。jquery 的代码是这样的:
$.get("phpfile.php",{'variable':variable},function(response){
$("paragraph_to_display_response").html(response);
我希望 php 作为响应返回一个 html 文件,该文件实际上是一个上传文件表单。我可以这样做吗? PHP 代码应该是这样的:
$variable=$_GET['variable'];
//perform some checks with variable
echo ???//How can I echo an html file?
谢谢!