I am facing a problem in one of my current project. Just sharing if anybody had experience on this type of problem. While i try to use the below script :
header('Content-Type: image/jpeg');
the below error shows:
Warning: Cannot modify header information - headers already sent by (output started at /location/test.php:1) in /location/controller/Captcha.php on line 89
I have used ob_clean(); before the header('Content-Type: image/jpeg'); function to clean buffer. But not wroking. I am also check for any output or newline in php files, but found nothing.
Can anybody give me a solution please?