Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我使用此代码使用 ajax 发送数据,当我使用此 php 音乐站点工作时,我使用音乐站点进行定位
请记住,header() 必须在发送任何实际输出之前调用,无论是通过普通 HTML 标记、文件中的空白行还是从 PHP 发送。
这可能是个问题。
header("Location: http://www.example.com"); echo "Mesaj"; exit;
您决定重定向后立即发送内容。
这是你应该做的:
header("Location: http://www.example.com/?m=Mesaj"); exit;