出现Notice: Undefined index:
我在searchroom.php中将值提交给selectroom.php进行处理,总是出现Notice: Undefined index:
searchroom.php
selectroom.php
$roomtype=$_POST["selecttype"];
$roomprice= $_POST["pricerange"];
echo $roomtype;
红色部分是出错的地方,我想知道为什么得不到$_POST["selecttype"]和$_POST["pricerange"]呢?
echo $roomprice;
?>
------解决方案--------------------