I have a problem....I want to insert many data from first table to second table.... but when I coding in PHP to insert data...If many record data...( more than 100,000 records) When I call from browser to run this program...It's time out ...for this process... Can I call this program in background..or any way to execute this problem..:-) ..Thank you very much for any instruction.....
This has been answered several times recently; you should search the forum for details.
You need to compile PHP as a standalone (cgi mode) program and invoke it as a background process. This is trivial under Unix; I have no idea whether it is possible under Windows.
If you'll be running this script often you should set it up as a "background" process.
OTOH, if this is a one time use, just use set_time_limit() to increase the maximum execution time of the script to avoid timing out.