MySQL Forums
Forum List  »  Newbie

Internal server error - table too big?
Posted by: Alan Rolfe
Date: May 10, 2012 03:03PM

I'm using PHP/MySQL to keep track of which songs are used in our church services. Recently on one of my operations, I get an 'Internal Server Error' message. If I go into the table with PHPmyAdmin and delete a dozen or so entries, or even reduce the number of fields I'm calling up, it works! Could it be that the table is too big for the mysql_query or mysql_fetch_array functions?

Here is a short extract of the code:

$result2 = mysql_query("SELECT * FROM service");

while ($row2 = mysql_fetch_array($result2)) ........

Thanks for any ideas

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.