我在本台电脑里hosts设置了两个域:
http://www.a.com/
http://www.b.com/一个是http://www.a.com/index.html,代码如下:<form method="post" action="http://www.b.com/1.php">
     <input type="text" name="name01" />
 <input type="text" name="name02" />
 <input type="submit" value="提交" />
</form>
另一个是:http://www.b.com/1.php<?php
  $a=$_REQUEST['name01'];
  echo $a."<br/>";
  $b=$_REQUEST['name02'];
  echo $b
?>
1.php现在能接受到input值,请问实际开发环境收的到吗?