| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2006-04-28 04:17 UTC] grantc@php.net
  [2006-05-04 12:12 UTC] grantc@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 11:00:01 2025 UTC | 
Description: ------------ At the end of a php script, the Apache child process dies. [notice] Parent: child process exited with status 3221225477 -- Restarting. Reproduce code: --------------- <html> <head> </head> <body> <?php $link = ingres_connect("drupal", "howertonku", "grabstein") or die("Connection to db failed"); $query = "SELECT * FROM users"; echo "<p>" . $query . "</p>"; ingres_query($query, $link); echo "<table>"; while ($row = ingres_fetch_row()) { echo "<tr><td>" . $row[0] . "</td><td>" . $row[1] . "</td></tr>"; } echo "</table>"; ?> </body> Expected result: ---------------- SELECT * FROM users 0 1 admin No errors in log Actual result: -------------- SELECT * FROM users 0 1 admin [notice] Parent: child process exited with status 3221225477 -- Restarting.