Fsockopen issues
am 20.02.2006 10:48:37 von Yemi Obembe------=_Part_15845_22534764.1140428917812
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Is it possible (and advisable) to make multiple Get/head request through on=
e
fsockopen handle.
eg:
$fp =3D fsockopen($host, 80);
$request =3D "GET /one.htm HTTP/1.0\r\n";
.......
fputs($fp, $request);
.....
//and then, another request through same handle:
$request2 =3D "GET /two.htm HTTP/1.0\r\n";
....
fputs($fp, $request2); //i.e through same handle.
--
http://ngBot.com | http://wap.ngBot.com
Nigeria's #1 website directory.
------=_Part_15845_22534764.1140428917812--