Hello
I have php 5.0.3 and MySQL 4.1.
That's my problem :
I must do a large query that return me aproximately 23000 results.
The problem is that if my query return me over 2335 result (I have test the exact number that make php crazy) the page leave blank without any error (I have loocked in the html code there is nothing just a blank page without code source) but if my query return < 2334 result it works !
That's my php config :
max_execution_time = 120 ;
max_input_time = 120 ;
memory_limit = 25M ;
So it should not be a memory limit.
What could be the problem please ? Is it a php bug ? :queasy:
My query is like that :
SELECT distinct nom_repertoire, nom_ressource FROM acces WHERE nom_ressource = 'K_Saverne' ORDER BY nom_repertoire ASC
but the problem is not the query that works great but php.
This query works too :
SELECT distinct nom_repertoire, nom_ressource FROM acces WHERE nom_ressource = 'K_Saverne' ORDER BY nom_repertoire ASC LIMIT 2334
but this one not because she return over 2334 result not :
SELECT distinct nom_repertoire, nom_ressource FROM acces WHERE nom_ressource = 'K_Saverne' ORDER BY nom_repertoire ASC LIMIT 2335
How to resolve this problem ? 😕