
Jerome - 2007-06-27 22:57:39
Hello,
This class is working perfectly when working with POST request, however I was wondering how to manage variables when performing GET request ?
Do I have to manage it manually in the URL using something like this:
foreach( $gets AS $name => $value ){
$getValues .= urlencode( $name ) . "=" . urlencode( $value ) . '&';
}
Or is there any GET equivalent to the $arguments['PostValues'] that would be directly handled by the class ?
Thanks for your answer.
Manuel, Thanks for this great work !
Jerome