当前位置: 代码迷 >> PHP >> 关于php页面跳转有关问题
  详细解决方案

关于php页面跳转有关问题

热度:83   发布时间:2016-04-28 18:19:36.0
关于php页面跳转问题
关于页面跳转问题 我点击查询时可以跳到wordsProcess.php界面 但是点击添加就是 404找不到页面 为什么啊 
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
</head>
<body>
<h1>单词查找</h1>
<form action="wordsProcess.php" method="post">
请输入英文单词:<input type="text" name="enword"/>
<input type="hidden" name="hidden" value="1"/>
<input type="submit" value="查询"/>

</form>
<h1>添加单词</h1>

<form action="wordsProcess.php" method="post">
请输入英文单词:<input type="text" name="enword"/>
请输入中文单词:<input type="text" name="cnword"/>
<input type="hidden" name="hidden" value="2"/>
<input type="submit" value="添加"/>
</form>
</body>

</html>
------解决思路----------------------
测试过,点添加也可以跳到wordsProcess.php
------解决思路----------------------
我也测试过了可以啊
------解决思路----------------------
请下浏览器缓存看看?
------解决思路----------------------
wordsProcess.php页面在哪呢?看下路径。
  相关解决方案