PHP中的echo命令无法执行

时间:2019-07-08 07:33:13

标签: php

echo命令没有得到执行。

echo "<script>alert('Attendence Updated')</script>";
header("location: http://localhost/classroom/adminportal.php");

1 个答案:

答案 0 :(得分:0)

如果要在重定向之前向用户打印消息,则不能使用header( 'Location: ...' ),因为在发送标头之前不能发送任何输出。

您可以使用以下内容:

<?php
header("refresh:0; url=http://localhost/classroom/adminportal.php");
echo "<script>alert('Attendence Updated')</script>";