在zend studio中,我写了两个php文件signup.php
<?PHP
// this page doesn't has any php code to explain.
?>
<html>
<head>
<title>Sign-up</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head><body>
<form name="form1" method="post" action="add.php">
  <h1>新用户注册</h1>
  <p> 用户名: 
    <input name="username" type="text" id="Username">
    <br>
    密&nbsp;&nbsp;码: 
    <input name="password" type="password" id="password">    确认密码: 
    <input name="confirmpassword" type="password" id="confirmpassword">
    <br>
    Email: 
    <input name="mailadres" type="text" id="mailadres">
    <br>
    <input type="submit" value="注册">
    <br>
    如果已经有帐号,可以单击 <a href="login.php">here</a>登录.</p>
</form>
</body>
</html>add.php
<?php
phpinfo()
?>但在调试的时候,点击“注册”出来的是blankadd.php这个信息,但在ie里页面流转是正常的,我怀疑是配置文件哪里要配一下,哪位大哥帮帮忙