如果满足条件,我想将我的页面重定向到另一个页面,例如 samplepage1.php
$id = $_POST['id'];
$name=$_POST['name'];
if($max>$count){
//action on the same page
}
else{
//redirect to URL:index.php/samplepage2.php with the values $id & $name in POST METHOD
}
我需要一个解决方案,以便必须通过帖子将值发布到“samplepage2.php”,但严格不使用javascript来实现自动提交(我不喜欢javascript的帮助,好像用户可以在浏览器中将其关闭)