You are here

function HTTP_Request::addQueryString in Flickr API 5

Adds a querystring parameter

@access public

Parameters

string Querystring parameter name:

string Querystring parameter value:

bool Whether the value is already urlencoded or not, default = not:

File

phpFlickr/PEAR/HTTP/Request.php, line 518

Class

HTTP_Request
Class for performing HTTP requests

Code

function addQueryString($name, $value, $preencoded = false) {
  $this->_url
    ->addQueryString($name, $value, $preencoded);
}