这句话里面有错误吗?
程序员文章站
2022-06-02 08:13:42
...
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.net/manual/zh/language.types.string.php 可以看看 巩固一下