Hello,
On 12/08/2003 10:39 PM, Justin Patrin wrote:
$arr[0][0] = "Something"; $arr[0][1] = "Hello"; $arr[0][2] = "Hi";
It is possible to post this array to another site in a form? Or how can i do
this?
You may want to try this class that lets you make HTTP requests like a normal browser:
http://www.phpclasses.org/httpclient
Or even better, use PEAR's HTTP_Client. http://pear.php.net/package/
> HTTP_Client
Why better? Have you tried both packages?
No, however, the httpclient system is a lot of code that is part of one class. HTTP_Client is based on lots of sub-systems, each of which can be used seperately and for other purposes (and each of which is maintained by seperate, multiple people). For instance, there is the Socket API, URL parsing, the HTTP Request, etc. All of which HTTP_Client is built upon instead of re-inventing.
Also, and just as important, using PEAR packages gives you a centralized way of dealing with errors.
-- paperCrane <Justin Patrin>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php