0
$db=mysql_connect('localhost','root','root');
mysql_select_db('test');
$query=mysql_query("SELECT * FROM table");
$r=mysql_fetch_assoc($query);
print_r($r);
它只是給我的第一個元素。
但是在PhpMyAdmin中它給了我所有的元素。
我該如何讓它在PHP中工作?
它的工作謝謝你! – user1365010