このようにデータベースの選択クエリでデータを選択しようとしました。データベースフィールド+ mysqlでrealesacpeの値を取得する方法
$qry ="select contact from sip_registrations where sip_user='1234567890'";
$sip_contact = mysql_query($qry);
echo "<pre>";
while($row=mysql_fetch_assoc($sip_contact)){
print_r($row);
}
印刷結果は以下のとおりです。
Array
(
[contact] => "1234567890"
)
しかし、この
mysql> select sip_user,contact from sip_registrations where sip_user='1234567890'";;
+-------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
| sip_user | contact |
+-------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
| 1234567890 | "1234567890" <sip:[email protected]:XXX;line=13fc8fc06d07efc;fs_path=sip%3A196.31.25.91%3Blr%3Breceived%3Dsip%3AXXX.XX.XXX.16%3A5066> |
+-------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
などのデータベースのコンタクトフィールドの値に実際に私はこの
Array
(
[contact] => "1234567890" <sip:[email protected]:XXXX;line=13fc8fc06d07efc;fs_path=sip%3A196.31.25.91%3Blr%3Breceived%3Dsip%3AXXX.XX.XXX.16%3A5066>
)
私はこの仕事をするために何をする必要があるか任意のアイデアのように配列の値を返す必要がありますか?ありがとう!
'mysql_ *'関数を使用しないでください。 mysqli_ *または 'PDO'に移行してください。 –
どのフィールドタイプが 'contact'ですか?これはわかりませんが、MySQLは* partial *フィールドを返さないでしょう。 – David