大家好,我是 PHP 新手
我正在使用 window.location 重定向到另一个 PHP 页面.. 但我需要向其中添加一些数据
所以我正在使用
echo'<script> window.location="../post/view_full_post.php?ID=<? echo $ID ?>"</script> ';
但它对我不起作用,并在我的URL中给了我
http://bla bla/bla bla/post/view_full_post.php?ID=%3C?%20echo%20$ID%20?%3E
并说我正在传递有效的身份证件但它不起作用
不能接受的
An appropriate representation of the requested resource /bla bla/post/view_full_post.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
所以我的问题是如何将查询字符串传递到 Window.location?