Source for file Param.php
Documentation is available at Param.php
* Parameter accessing helper functions
* @copyright Copyright (c) 2004-2006 Mirchev Ideas Ltd. All rights reserved.
* Retrieves a param. First tryies from $_POST, and then $_GET. If the param is not found
* prints an error and terminates the application
* @param string $param The param name
* @return string the value
* Retrieves a param or returns a default value.
* First tryies from $_POST, and then $_GET. If the param is not found returns $defult
* @param string $param The param name
* @param string $default the default value
* @return string the value
* Returns true if the param is set
* @return bool true if the param is set
* Sets the param value. This value can be then obtained from miGetParam
* It clears the $_GET array value, and sets the value into the $_POST and $_REQUEST arrays
* @param string $param The param name
* @param any $value the param value
$_REQUEST[$param] =
$value;
Documentation generated on Thu, 08 May 2008 16:57:30 +0300 by phpDocumentor 1.4.1