echo命令没有得到执行。
echo "<script>alert('Attendence Updated')</script>";
header("location: http://localhost/classroom/adminportal.php");
答案 0 :(得分:0)
如果要在重定向之前向用户打印消息,则不能使用header( 'Location: ...' )
,因为在发送标头之前不能发送任何输出。
您可以使用以下内容:
<?php
header("refresh:0; url=http://localhost/classroom/adminportal.php");
echo "<script>alert('Attendence Updated')</script>";