当试图显示一条消息时,我试图设置我的PHP脚本,然后将用户重定向到他所在的同一站点。由于仅显示消息,因此页面将停留在send_mail.php站点中。 我遇到的问题是:
警告:无法修改标头信息-已在/storage/ssd1/551/10028551/public_html/send_mail.php中发送的标头(输出始于/storage/ssd1/551/10028551/public_html/send_mail.php:82)在第84行
我尝试删除代码末尾的?>,确保在代码开头没有空格。尝试在标头后运行消息,但是什么也没发生。
$index2_page = "index.html#divWithScroll";
if (!isset($_REQUEST['email_address'])) {
header( "Location: $feedback_page" );
}
elseif (empty($first_name) || empty($email_address)) {
$message = "Nombre y Correo Electornico no pueden estar vacios.";
echo "<script type='text/javascript'>alert('$message');</script>";
header( "Location: $index2_page");
exit;