On Saturday 08 June 2002 21:34, Tony wrote:
> I do appreciate your reply.
> Yes, I've tried to track down the problem.
> I comment-out the fopen() function and use echo to display the URL.
> And it displays fine, so I did get the record from MySQL.
> Then when I put the fopen() back, same problem appears.

You did check that $buffer contains what you expect for each iteration of 
$final_result?

> I think it's probably because I have too much data to update at once, over
> a hundred maybe?
> Then it causes the PHP to timeout this script hence the error.

You can use set_time_limit(3000) inside a loop (probably the foreach) as each 
time it is used it will reset the max execution time to 3000secs.

As I said before, see what's happening to the value of $counter. Or simplify 
that loop with a regular expression.

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *


/*
In Oz, never say "krizzle kroo" to a Woozy.
*/


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to