php获取文本框中的值,显示出的总是pageInput的之 10
echo"<formaction='?page=$pageInput'>";echo"跳转到:<inputtype='text'name='pageInput'id='p...
echo "<form action='?page=$pageInput'>";
echo " 跳转到:<input type='text' name='pageInput' id='pageInput' style='width:30px;height:20px'/>页<input type='submit' style='width:37px;height:20px;font-size:11px;' value='go'/></a>";
$pageInput = $_POST['pageInput'];
echo "</form>";
为什么总是显示http://localhost/abc.php?pageInput=2而不是http://localhost/abc.php?page=2 展开
echo " 跳转到:<input type='text' name='pageInput' id='pageInput' style='width:30px;height:20px'/>页<input type='submit' style='width:37px;height:20px;font-size:11px;' value='go'/></a>";
$pageInput = $_POST['pageInput'];
echo "</form>";
为什么总是显示http://localhost/abc.php?pageInput=2而不是http://localhost/abc.php?page=2 展开
3个回答
展开全部
<?php
if (isset($_GET['page']) && !empty($_GET['page'])) {
$pageInput = intval($_GET['page']);
}else{
$pageInput = 1;
}
echo "<form action='?page=$pageInput'>";
echo " 跳转到:<input type='text' name='page' id='pageInput' style='width:30px;height:20px'/>页<input type='submit' style='width:37px;height:20px;font-size:11px;' value='go'/></a>";
echo "</form>";
?>
你是采用get的方式,所以把input name="pageInput" 传过去了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询