You are here

function Net_URL::addRawQueryString in Flickr API 5

Sets the querystring to literally what you supply

@access public

Parameters

string $querystring The querystring data. Should be of the format foo=bar&x=y etc:

File

phpFlickr/PEAR/Net/URL.php, line 260

Class

Net_URL

Code

function addRawQueryString($querystring) {
  $this->querystring = $this
    ->_parseRawQueryString($querystring);
}