$TYPE_UNKNOWN
$TYPE_UNKNOWN :
Unknown type. It will <b>not</b> be used. Just for initialize.
..
Manager for the request
getInstance() : \myMVC_HttpRequest
Returns the instance of this class.
An instance of the request class
getSubmitParameter(string $key) : string
Returns the <b>unvalidated</b> value for the given parameter.
Useful if a form has more submit buttons and you want to check which button was used
string | $key | The name of the parameter |
The value of the parameters or false if it doesn't exists
getSubmitParameterLike(string $key) : string
Returns the <b>unvalidated</b> value for the parameter starting with $key.
Useful if a form has more submit buttons and you want to check which button was used
string | $key | The name of the parameter |
The value of the parameters or false if it doesn't exists
getSubmitParameterNameLike(string $key) : string
Returns the <b>name</b> of the parameter starting with $key.
Useful if a form has more submit buttons and you want to check which button was used
string | $key | The name of the parameter |
The name of the parameters or false if it doesn't exists
getSubmitUpload(string $key) : array
Returns the <b>unvalidated</b> value for the given upload.
Useful if a form has more submit buttons and you want to check which button was used
string | $key | The name of the parameter |
The value of the parameters or false if it doesn't exists