in reply to Re^2: How to wait until GD Image it written, then continue
in thread How to wait until GD Image it written, then continue

The following works for me:

my $q = CGI->new; print $q->header( -expires => '0', -pragma => 'no-cache', -cache_control => 'no-store, no-cache, max-age=0, must-revalidate' +, );

Replies are listed 'Best First'.
Re^4: How to wait until GD Image it written, then continue
by pstone (Initiate) on Jan 15, 2009 at 18:22 UTC
    Awesome - Thanks everyone! Back to da sleeves!