我试图在MySQL的select语句中使用变量。以下是代码。
<?php
extract($_REQUEST);
require_once("config.php");
$q=mysql_query("select * from ads where location='$loc';");
while($row=mysql_fetch_assoc($q)){
?>
<table border="0" cellSpacing="0">
<tr>
<td>
<img src="images/classifieds/<?php echo $row['id'];?>.jpg" height="80" width="80">
</td>
<td >
<span style="font-family:cambria;"><?php echo $row["content"];?></span>
</td>
</tr>
</table>
<?php
此处$loc
是从其他网页获取的位置。根据此$loc
的值,我必须从数据库中获取信息。当我使用这个选择语句时,它没有用。请让我知道你的想法。
答案 0 :(得分:0)
尝试
$q=mysql_query("select * from `ads` where `location`='$loc';");