我是 PHP 编程新手。请承受我...
使用标头函数时,使用 post 方法中的变量(动态)时,刷新选项不起作用。当对数字进行硬编码时,它的工作。我尝试了不同的选择。你可以在这里看到我的整个代码。没有成功使刷新工作动态。有人可以帮忙吗?
<?php
if($_POST['time']>0) {
$t = $_POST['time'];
$u =$_POST['url'];
echo "You will be redirected to the " .$u . " website in " .$t. "seconds";
//header("refresh:5; url=http://www.google.com");
//header("refresh:($_POST['time']);url=($_POST['url'])");
header('refresh: ' .$t);
header('Location: '.$u);
exit;
}
?>