for example this:
--- beginning of page ---
#!/usr/bin/php -q
<?php
session_start();
it says output/headers already output, cannot send session cookie etc. etc. - you've seen the message before.
Is it possible I have a \n\r between -q and <?php ?? I have to have the hashbang at the top, so what am I supposed to do here? I can't ob_start() before the hashbang either.
I'm thinking there is a solution to this - I realize with a CLI executable I really don't "start" a session with a cookie but it would be nice to not change my coding for a bunch of scripts..
Thanks,
Sam