Thanks for the reply Evert. I checked the Apache log and found: > [Wed Jul 09 19:30:09 2008] [notice] Parent: child process exited with > status 3221225477 -- Restarting. > [Wed Jul 09 19:30:12 2008] [notice] Apache/2.2.6 (Win32) PHP/5.2.5 > configured -- resuming normal operations > [Wed Jul 09 19:30:12 2008] [notice] Server built: Sep 5 2007 08:58:56 > [Wed Jul 09 19:30:12 2008] [notice] Parent: Created child process 4936 > [Wed Jul 09 19:30:13 2008] [notice] Child 4936: Child process is running > [Wed Jul 09 19:30:13 2008] [notice] Child 4936: Acquired the start mutex. > [Wed Jul 09 19:30:13 2008] [notice] Child 4936: Starting 250 worker > threads. > [Wed Jul 09 19:30:13 2008] [notice] Child 4936: Starting thread to listen > on port 80. Are there any other logs I should check? Thanks! On 7/10/08, Evert Lammerts <evert.lammerts@xxxxxxxxx> wrote: > > Check out your system's logs / event viewer. If apache crashes (how do > you notice?) there should be some indication of the reason. > > Evert > > On Thu, Jul 10, 2008 at 2:24 AM, Chris <dmagick@xxxxxxxxx> wrote: > > Bonger O wrote: > >> Hi, > >> > >> I have set up an environment on my Vista laptop comprising of Apache > 2.2, > >> MySQL Server 5.1 and Php 5.2.5. > >> > >> I'm using a simple php program that I found in a PHP/SQL book. The PHP > >> program queries a MySQL table and traverses the results array of the > query > >> and should display on screen. However, there seems to be a problem with > my > >> environment and as every time I run the program I get the error "*Apache > >> HTTP server stopped working and was closed*". > >> > >> Below is the code I am using, but I have managed to narrow the problem > down > >> to *$row = mysqli_fetch_assoc($result);* > >> For some reason this is causing the crash. Would there be any reason > that > >> this function cant be found perhaps? I really have no clue!!! > > > > If the function doesn't exist php gives that error, not a random crash. > > > > Does the query work outside of php (type it in to the mysql console > > directly) ? > > > > Does it happen for a particular record? ie it gets up to record #5 > > before it crashes. What's in record #5? > > > > How many records are returned by the query? Maybe you're selecting too > > much data and the srever is killing it because it's taking too much > > memory (random guess :P). > > > > Do you have another environment you can try it in? > > What happens there when you: > > - use the same database > > - use a different database > > > > -- > > Postgresql & php tutorials > > http://www.designmagick.com/ > > > > -- > > PHP Database Mailing List (http://www.php.net/) > > To unsubscribe, visit: http://www.php.net/unsub.php > > > > >