请注意,此答案已过时! 从PHP7开始,mysql扩展不再可用。如果要在PHP7中使用旧的mysql函数,则必须从PECL编译ext /
mysql。有关其他最新解决方案,请参见其他答案。
这将起作用,请在此处查看更多文档:http : //php.net/manual/zh/function.mysql-fetch-
array.php
$result = mysql_query("SELECt names FROM Customers");$storeArray = Array();while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $storeArray[] = $row['names']; }// now $storeArray will have all the names.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)