Programming Reference:Functions:CCGetFromPost
From CodeCharge Studio Community Wiki
Description
Retrieves a POST input parameter value. The function first attempts to retrieve the parameter from the POST query string and if no value is returned the function returns the default value specified in the function call.
Location
Common
Syntax
CCGetFromPost(ParameterName, DefaultValue)
Return value
string
Parameters
| Name | Type | Description | Required |
| ParameterName | string | Name of the parameter to retrieve. | Yes |
| DefaultValue | string | The value to be assigned if the given parameter has no value. It can be an empty string. | Yes |
See also:
CCGetParam function, CCGetFromGet function