in reply to Continue when the client abort
use POSIX; # ... if (!defined($pid=fork()) { # fork fails } elsif($pid) { # parent waitpid(-1, WNOHANG); # run code here } else { # child } [download]
.02
cLive ;-)