-1

我需要帮助从数据库中查询字符串,请帮助。

<?php
$phone="8165526693@vtext.com";


$link = mysql_connect('localhost', 'root', 'toor');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
if (!mysql_select_db('wizarddb')) {
    die('Could not select database: ' . mysql_error());
}
$result = mysql_query("SELECT * FROM Phone WHERE phone LIKE '%$phone%'"); 

if (!$result) {
    die('Could not query:' . mysql_error());
}
echo mysql_result($result(1); // outputs phone

mysql_close($link);
?>

我有回声问题或查询错误?

4

1 回答 1

0

您的错误在回声上。

echo mysql_result($result(1); // outputs phone

那应该是

echo mysql_result($result[1]); // outputs phone
于 2013-09-09T21:56:32.090 回答