Re: [PHP] Re: Query stopping after 2 records?

2009-05-05 Thread Miller, Terion
Miller: She already posted this was solved. On 5/4/09 5:27 PM, Martin Zvarík mzva...@gmail.com wrote: If the query stopped after getting 2 entries then this has nothing to do with max_execution_time. But stupid topic anyway, I don't know why are we even trying to figure what Miller meant, he

[PHP] Re: Query stopping after 2 records?

2009-05-04 Thread Martin Zvarík
Miller, Terion napsal(a): I need help/advice figuring out why my query dies after 2 records. Here is the query: // Build your INSERT statement here $query = INSERT into `warrants` (wid, name, age, warrant, bond, wnumber, crime) VALUES (; $query .= '$wid', '$name',

Re: [PHP] Re: Query stopping after 2 records?

2009-05-04 Thread Andrew Hucks
When you say die, does it just stop, or do you get an error message? Depending on how long it's taking to perform the action, the script will stop just because it's taking a while. (by default, I think it's 30 seconds.) If so, use: ini_set(max_execution_time, time in seconds); On Mon, May 4,

Re: [PHP] Re: Query stopping after 2 records?

2009-05-04 Thread Martin Zvarík
If the query stopped after getting 2 entries then this has nothing to do with max_execution_time. But stupid topic anyway, I don't know why are we even trying to figure what Miller meant, he most probably solved it already... Andrew Hucks napsal(a): When you say die, does it just stop, or