使用波斯字符从MySQL数据库检索数据

时间:2018-09-22 07:26:26

标签: javascript php

当我通过javascript将我的where条件值传递给php副代码时,我从msql数据库检索数据时遇到问题。 这是我的代码:

$sql="SELECT ItemPrice FROM wp_my_Items WHERE ItemName = '".$q."'";

if ($result=mysqli_query($con,$sql))
{
    while ($row=mysqli_fetch_row($result))
    {
      echo $row[0];
    }
    mysqli_free_result($result);
}
else
     echo "not found";

0 个答案:

没有答案