我一直在我的 mysql 数据库上运行这个查询:
select email from main where phno=1234567890
它返回这个(http://i.imgur.com/YiVQ4NN.png)
所以这是我在 php 中的尝试:
$search_query="select email from main where phno = 5756407850";
$to = mysql_query($search_query);
echo "hello " . mysql_query($search_query);`
我在网络浏览器中的结果是hello Resource id #34
我怎样才能提取电子邮件部分中的内容?在这种情况下只是“HGH”字符串?
回答:
$search_query="select email from main where phno = 5756407850";
$result = mysql_query($search_query);
$array = mysql_fetch_array($result);
$to = $array[0];
echo "hello " . $to;