I have this issue where I am posting a response into the controller, however it throws this error. This is the first time I am coming across this error.
Kindly find the code below:
if (isset($this->input->post('responseCode')))
{
echo '<p><strong>Cardstream Response</strong></p>';
echo '<pre>';
print_r($this->input->post());
echo '</pre>';
}
It is pointing at this particular line if (isset($this->input->post('responseCode')))
This is a cardstream integration. Unfortunately I haven't found the library for cardstream in codeigniter, hence I am using the Core PHP code for the same.
Any help will be greatly appreciated. Thanks.