|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-09-02 21:03 UTC] zeev at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 03:00:01 2025 UTC |
<? for ($x = 0; $x < 30000; $x++) { $result = mysql($db_name, "select * from page where page = 'page$x'"); $array = mysql_fetch_array($result); echo "id:" . $array["page_id"] . "<BR>"; flush(); mysql_free_result($result); } echo "DONE"; ?> /* this will eat all memory and crash finnaly the machiene same script works fine under 3.12 */