欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

这句话里面有错误吗?

程序员文章站 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 可以看看 巩固一下

相关标签: php