[PHP] 4.3.2 -- does connection_status() actually work?

2003-06-12 Thread Per Jessen
Shouldn't the following work - or rather why doesn't it : ignore_user_abort(0); for( $i=100; $i; $i-- ) { if ( connection_status() ) exit(0); print blurp.br/; flush(); sleep(1); } print Done.br/; This is

Re: [PHP] 4.3.2 -- does connection_status() actually work?

2003-06-12 Thread Jeff Harris
On Jun 12, 2003, news claimed that: |Shouldn't the following work - or rather why doesn't it : | | |ignore_user_abort(0); | |for( $i=100; $i; $i-- ) |{ |if ( connection_status() ) exit(0); |print blurp.br/; flush(); |

Re: [PHP] 4.3.2 -- does connection_status() actually work?

2003-06-12 Thread Rasmus Lerdorf
On Thu, 12 Jun 2003, Per Jessen wrote: Shouldn't the following work - or rather why doesn't it : ignore_user_abort(0); for( $i=100; $i; $i-- ) { if ( connection_status() ) exit(0); print blurp.br/; flush();