我在尝试将href =“”更改为href =''时在php中出错。基本上我有一个代码来输出数据库中列出的产品列表。我想在标题上创建一个链接,如“”问题是我无法更改href以包含变量。我认为这与php代码有关,但因为我是php的初学者,我不知道该怎么做。
以下是代码:
$outputList = '';
while($row = mysql_fetch_array($sql2)){
$id = $row["id"];
$title = $row["title"];
$location = $row["location"];
$price = $row["price"];
$description = $row["description"];
$map = $row["map"];
$image = $row["image"];
$outputList .= '<div class="ind_result">
<div class="w-row">
<div class="w-col w-col-3 w-col-small-6 w-clearfix image">
<img class="image" src="'.$image.'">
</div>
<div class="w-col w-col-9 w-col-small-6 w-clearfix desc"><a class="title" href="">' .$title. '</a>
<h4 class="price">'.$price.'</h4>
<h5 class="sub-title">'.$location.'<a href="'.$map.'"><img class="map" src="../images/map.png"></a></h5>
<p class="description">'.$description.'</p>
</div>
</div>
</div>';
我尝试使用echo而不是$ outputList但只是获取错误。任何帮助,将不胜感激。感谢
重新编辑: 这是我正在尝试实现的代码:
<a class="title" href='example.php?propertyid=$id'>' .$title. '</a>
而不是
<a class="title" href="">' .$title. '</a>
答案 0 :(得分:1)
href="example.php?propertyid=' .$id. '">' .$title. '</a>