On Fri, 5 Apr 2002, Julian wrote: > My script run fine with: > > 0 0 * * * /usr/bin/php /path/to/my/script.php > > But I continue receiving an email each time that the script run that say: > > X-Powered-By: PHP/4.0.6 > Content-type: text/html
PHP thinks it's producing output to be sent via a web server, so it outputs those headery lines. Changing "/usr/bin/php" to "/usr/bin/php -q" will probably fix the problem. miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php