Timeout problem

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
kcp88
Forum Newbie
Posts: 8
Joined: Mon Aug 22, 2011 11:51 pm

Timeout problem

Post by kcp88 »

I've a php script to insert and update the table , but the number of rows for insert and update are huge and it takes around 15 minutes to complete. And I need to retrieve the data from the table in the same script , however I think due to long loading duration , the data cannot be retrieved and cannot be shown . But the values in the table are correct and updated .

let's say in abc.php , I

Code: Select all

include "insert.php"; //It takes around 15 minutes to insert and update the table 
below the insert.php , I retrieve all the information from the table . But due to the long loading time , It cannot be displayed .

Any idea how to solve this ? I need to do the insert and retrieve in a same php script so that the information in the page will not loss . :(
User avatar
twinedev
Forum Regular
Posts: 984
Joined: Tue Sep 28, 2010 11:41 am
Location: Columbus, Ohio

Re: Timeout problem

Post by twinedev »

Post Reply