RE: [PHP] fsockopen question

2002-07-03 Thread Martin Towell
That's still running sequentially -Original Message- From: Jose Arce [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 5:01 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] fsockopen question now it's clear thx :D is not the same thing as: while

RE: [PHP] fsockopen question

2002-07-03 Thread Jose Arce
sequentially. But there's two >sockets >open... > > >-----Original Message- >From: Jose Arce [mailto:[EMAIL PROTECTED]] >Sent: Thursday, July 04, 2002 4:48 PM >To: [EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: RE: [PHP] fsockopen question > > >So...i

Re: [PHP] fsockopen question

2002-07-03 Thread Tracker 1
thread? i don't > understand...i mean...if i can open more than one fsockopen...it is > multithread, or in wich cases php open more than one fsockopen? > thx :D > > > >From: Martin Towell <[EMAIL PROTECTED]> > >To: 'Jose Arce' <[EMAIL PROTECTED]>

RE: [PHP] fsockopen question

2002-07-03 Thread Martin Towell
I mean, you can do each of the fgets()'s will be executed sequentially. But there's two sockets open... -Original Message- From: Jose Arce [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 4:48 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] fsockope

RE: [PHP] fsockopen question

2002-07-03 Thread Jose Arce
rce' <[EMAIL PROTECTED]>, [EMAIL PROTECTED] >Subject: RE: [PHP] fsockopen question >Date: Thu, 4 Jul 2002 16:39:36 +1000 > >you can do more than one fsockopen(), but since php isn't multi-threaded - >you'll still only be able to download one file at a time. >

RE: [PHP] fsockopen question

2002-07-03 Thread Martin Towell
you can do more than one fsockopen(), but since php isn't multi-threaded - you'll still only be able to download one file at a time. -Original Message- From: Jose Arce [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 4:39 PM To: [EMAIL PROTECTED] Subject: [PHP] fsockopen question

Re: [PHP] fsockopen question

2001-04-26 Thread Nuno Silva
Hi, the way i would do it looks like this: - setup stunnel (www.stunnel.org) to listen to port 10443 in the 127.0.0.1 interface and forward that to www.myprovider.com - the php script would connect to 127.0.0.1:10443 using plain text - that's it, easy and clean! :) stunnel will hapilly forwar

RE: [PHP] fsockopen question

2001-04-26 Thread Michael Conley
nsaction is accepted. -Original Message- From: Matthew Luchak [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 10:04 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] fsockopen question I use: $fp = fsockopen("www.somewhere.com",80); fputs($fp, "GET http://www.somewhere.com/som

RE: [PHP] fsockopen question

2001-04-26 Thread Matthew Luchak
hen try the response.. Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] -Original Message- From: Michael Conley [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 1:00 PM To: Matthew Luchak; [EMAIL PROTECTED] Subject: RE: [PHP] fsockopen ques

RE: [PHP] fsockopen question

2001-04-26 Thread Matthew Luchak
I use: $fp = fsockopen("www.somewhere.com",80); fputs($fp, "GET http://www.somewhere.com/somedir/somepage.html HTTP/1.0\r\n\r\n"); to parse. Should be easily modified Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] -Original Message- From: