我的html无法调取 php是什么原因,一调取就返回整个php文档 急急急 不然很麻烦
<?php
//闰年的条件是:一:能被4整除,但不能被100整除的年份(例如2008是闰年,1900不是闰年)
//能被二:能被400整除的年份(例如2000年)也是闰年
//接收数据
$year=$_POST['year'];
if(($year%4==0&&$year%100!=0)||$year%400==0){
echo $year,'是闰年<br/>';
}else{
echo $year,'不是闰年<br/>';
}
正在回答 回答被采纳积分+1
#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
#
DocumentRoot "C:\phpStudy\PHPTutorial\WWW"
<Directory />
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
#
# "c:/Apache4/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/phpStudy/PHPTutorial/Apache/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
这是我httpd.conf 里面的两个 Directory 改怎么配置????
请问你安装了php环境了吗?
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星