[PHP-DB] Fsockopen issues
by Yemi Obembe other posts by this author
Feb 20 2006 1:49AM messages near this date
[PHP-DB] htacces/ php
|
[PHP-DB] 1
Is it possible (and advisable) to make multiple Get/head request through one
fsockopen handle.
eg:
$fp = fsockopen($host, 80);
$request = "GET /one.htm HTTP/1.0\r\n";
.......
fputs($fp, $request);
.....
//and then, another request through same handle:
$request2 = "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.
Attachments:
unknown1
|