php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32468 Maximum Execution time of 30 seconds exceeded
Submitted: 2005-03-27 22:53 UTC Modified: 2005-03-27 22:58 UTC
From: MIKEYTF at aol dot com Assigned:
Status: Not a bug Package: *General Issues
PHP Version: 4.3.9 OS: Uhh.. cPanel--PHP/Perl capable
Private report: No CVE-ID: None
 [2005-03-27 22:53 UTC] MIKEYTF at aol dot com
Description:
------------
I made this file right?  I think this is the problem:

$category=mysql_query("SELECT * FROM categories ORDER BY catid ASC");
while($get_cat=mysql_fetch_row($category)) {

$board=mysql_query("SELECT * FROM boards WHERE hidden='No' AND catid='.$get_cat[0].'");

}
while($get_cat=mysql_fetch_row($category) AND $get_board=mysql_fetch_row($board)) echo..


Then it would echo a table containing data, etc.  I get a maximum execution time error.  >_<

Please help me..  Thanks!

The page I get this error on is:

http://subzer0.net/php

Reproduce code:
---------------
http://subzer0.net/php/index.phps

Expected result:
----------------
I expect to see the two categories in the database: Site Boards and Social Boards with the message boards the belong to each category under each one.

Actual result:
--------------
It gives me a fatal error saying 'Maximum Execution Time of 30 seconds exceeded'

Patches

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-03-27 22:58 UTC] tony2001@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.

.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Aug 20 03:01:28 2024 UTC