Hi. How can I turn off default header output? When I set default-mime-type in php.ini to blank, i'm still having empty content-type: line in header.
Thank you.
If you are using php as a cgi, the hash bang should look like:
#!/path/to/php -q
The -q turns on quiet output (no headers) hope that helps.
Chris King