[PHP] Re: Question about Request.php

2005-12-01 Thread Danilo Azevedo
Jonathan, thanks for ur assistence, i did the print_r($_REQUEST) , its working fine all my get vars returned i did all my website using the Request.php/PEAR class but only this page dont work, because i never used a Tag with attributes before :(

[PHP] Re: Question about Request.php

2005-12-01 Thread James Benson
Try checking for the error after:- $Req->sendRequest(); Example:- $response = $Req->sendRequest(); if (PEAR::isError($response)) { die($response->getMessage()); } $Response = $Req->getResponseBody(); You may also want to include some options like so:- $options = array( 'method' => 'G