无法在mySQL数据库中查询php字符串值

时间:2017-04-14 17:16:51

标签: php mysql

在php中传递一个查询字符串,但当它的编号工作正常,但它的字符显示没有找到id在mysql服务器中工作正常的字符。请检查以下代码

传递

<a  class=" btn btn-danger navbar-left" target="_blank" style="width:100%" rel="nofollow, noindex"" href="Deals.php?id=<?php echo $row['productId'];?>">View Offer</a>

获得

<?php
include 'Connection.php';
$id = $_GET["id"];
echo "id is".$id;




$query=mysql_query("select * from sdMobiles where productId='$id'") or die ("could not find ");

?>

,这是页面

用char http://sabkideal.com/Deals.php?id=MOBDXVTYVN6WCHNZ

带号码 http://sabkideal.com/Deals.php?id=645588442716

enter image description here

0 个答案:

没有答案