I have an XML document that has around 48,000 children (~50MB). I run an INSERT MYSQL query that makes new entries for each one of these children. The problem is that it tak
Put this at the top of your script:
ini_set('max_execution_time', 300);
That'll make it 5 minutes.