当前位置:Gxlcms > PHP教程 > 这句话里面有错误吗?

这句话里面有错误吗?

时间:2021-07-01 10:21:17 帮助过:25人阅读

header("location:http://localhost/tieba3.php?title=.$v['title'].");

回复内容:

header("location:http://localhost/tieba3.php?title=.$v['title'].");

header("location:http://localhost/tieba3.php?title=".$v['title']);

注意引号位置

header("location:http://localhost/tieba3.php?title=".$v['title']);

header("location:http://localhost/tieba3.php?title={$v['title']}");

变量加花括号引用。

http://php.com/manual/zh/language.types.string.php 可以看看 巩固一下

人气教程排行