php不跳转页面的解决办法:1、改用javascript实现跳转,语句为“echo "<script>location='/manage'</script>";”;2、设置编码为“utf-8”。
推荐:《PHP视频教程》
1、跳转页面你可以用javascript 试试。
echo "<script>location='/manage'</script>";
2、编码问题,在最前面写上
header("Content-type: text/html; charset=utf-8");