I have since taken the shebang line out because it didn't make a difference. But you can see the email here which is the code within notifies.php.
But where do you turn on the short_open_tag for the command line? I've got it enabled and working for php files being displayed via the browser.
I haven't tried something simple, I will try your recommendation and report back what happens.
Thanks for your help with this...
Keith
OK, I tried this:
<?php
echo "Hello World";
?>
I then ran it from the command line by typing:
/usr/bin/php testcli.php
That returned Hello World to the command line. I then changed that to read:
<?
echo "Hello World";
?>
I then ran it again with the same command as above and that returned the code instead of just "Hello World" So it appears that it doesn't like those short PHP tags. So, where do I change that?
Keith