-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 に答える