想要在我的标题位置路径中获取会话ID

时间:2015-10-08 07:13:27

标签: php

这里我附上了我的代码

b ON a.city_id=b.id WHERE b.state=$state

我想在上面的路径中获得SELECT。请帮帮我。

2 个答案:

答案 0 :(得分:2)

将单引号更改为double,php将单引号视为字符串,解析变量需要使用双引号:

 header ("Location:http://siaea.com/?page_id=833&location_id=$id");
 exit();

答案 1 :(得分:1)

替换为: -

$id=$_SESSION['id'];
header ("Location:http://siaea.com/?page_id=833&location_id=".$id);