| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2002-06-04 04:59 UTC] edink@php.net
  [2002-06-04 06:18 UTC] roelkw at xs4all dot nl
  [2002-06-04 06:32 UTC] mfischer@php.net
  [2002-06-04 10:17 UTC] roelkw at xs4all dot nl
  [2002-06-04 10:25 UTC] mfischer@php.net
  | 
    |||||||||||||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 06:00:01 2025 UTC | 
When you create a variable and make it a string, like this: $test = "hey"; and later on I change this to an array, like this: $i++; while ($row = mysql_fetch_array($res)) { $test[$i]["id"] = $row["id"]; $test[$i]["name"] = $row["name"]; $i++; } Then PHP/Apache crashes on this line: $test[$i]["name"] = $row["name"]; If I comment that line out, there's no crash! Weird, isn't it?