我正在尝试使用一种重定向选项,但是由于某种原因,我无法使元重定向正常工作。我只能让标题重定向工作。
header(“ Location:../ student_registration.php?id = $ userid”);
echo "<meta http-equiv='refresh' content='0;url=../student_registration.php?id=$userid')";
答案 0 :(得分:0)
尝试一下
echo "<meta http-equiv='refresh' content='0;url=http://example.com/student_registration.php?id=.$userid.'";
OR
echo "<meta http-equiv='refresh' content='0;url=http://example.com/student_registration.php?id=$userid'";