欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

html页post给php,为什么变成下载php而不是显示php页?

程序员文章站 2022-04-23 08:53:14
...
phphtml

刚开始学php
这是html页

please fnish it

Name:MrMrsMs

Email Address:

Response:This is ...excellentokayboring

Comment:

php页


$title=$_POST['title'];
$name=$_POST['name'];
$response=$_POST['response'];
$comment=$_POST['comments'];
print "

Thank,$title $name,for your comments

";
?>

我把post改成get也不行。用的是xampp,单独测试php页的时候,是可以显示的,还是环境配置的有问题吗?

相关标签: php html