post_get($index[, $xss_clean = NULL])
| Parameters: |
|
|---|---|
| Returns: |
POST/GET value if found, NULL if not |
| Return type: |
mixed |
This method works pretty much the same way as post() and get(), only combined. It will search through both POST and GET streams for data, looking in POST first, and then in GET:
$this->input->post_get('some_data', TRUE);
Please login to continue.