我有這個簡單的PHP代碼:的MySQL只返回一行
$query = mysql_query("SELECT `title`, `url_title` FROM `fastsearch` WHERE `tags` LIKE '%$q%' LIMIT 5");
$query2 = mysql_fetch_assoc($quer);
print_r($query2);
它只返回此:
Array ([title] => Kill Bill Vol 1. [url_title] => kill_bill_vol_1)
我有表3500+行,並運行在phpMyAdmin作品SQL完美。
我會接受在3分鐘內你的答案,當它讓我。我已經使用foreach,但我不知道如何使用while: – wintercounter 2010-12-07 00:12:51
foreach(mysql_fetch_assoc($ quer)as $ row => $ item){arrResults [$ row] = $ item; } 我需要這個,因爲我使用JSON數據和json_encode函數。 – wintercounter 2010-12-07 00:13:42