Greetings,
I recently made the upgrade from PHP3 to PHP4 in my development environment and I'm loving it. I'm eager to make the upgrade in my production environment but...
I have a number of PHP scripts that are called from the shell, usually in CronJobs. They pull data from MySQL and send out email to people, etc.
In php3, in order for these to work they call the php binary the same way a Perl file calls the Perl binary on the first line:
#!/usr/local/bin/php -q
But my php4 install doesn't include a php binary (at least, not that I can see). Is it still possible to run these scripts w/o re-installing php3?
I don't want to send these scripts through an HTTP transaction. There must be a binary or some file that can execute these scripts??
Thanks for any help,
Eric