RE: [PHP] Open 10 http connections in parallel

2002-08-08 Thread Steve Edberg
- >From: NoWhErEMan [mailto:[EMAIL PROTECTED]] >Sent: Friday, August 09, 2002 12:58 PM >To: [EMAIL PROTECTED] >Subject: [PHP] Open 10 http connections in parallel > > >Hello, > >I had to write a script to open 10 http connections for different links and >get the re

RE: [PHP] Open 10 http connections in parallel

2002-08-08 Thread Martin Towell
use C and fork() php (AFAIK) can't do parallel programming -Original Message- From: NoWhErEMan [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 12:58 PM To: [EMAIL PROTECTED] Subject: [PHP] Open 10 http connections in parallel Hello, I had to write a script to open 10

[PHP] Open 10 http connections in parallel

2002-08-08 Thread NoWhErEMan
Hello, I had to write a script to open 10 http connections for different links and get the response from the host. I do it by fopen each url one by one and save the response to a separated file. But it slow! I wonder if i can open 10 connnect (or more) in parallel? Thanks in advance. NoWhErEMaN