RE: [PHP] executables (.exe)

2001-03-22 Thread Christian Dechery
At 18:18 21/3/2001 -0800, you wrote: If you're on windows, (which i'm assuming you are) you can call the PHP binary with the path to your php script... so (assuming you have C:\php\bin\ as part of your PATH enviromental variables for windows) you could do PHP C:\path\to\php-script.php and it

[PHP] executables (.exe)

2001-03-21 Thread Christian Dechery
Correct me if I'm completely out of my mind here (often I am). But I think, I read somewhere that u can compile .php files and make executables of them to run in the command line like programs... is this true? How can I get it to work? WHat do I need? . Christian

Re: [PHP] executables (.exe)

2001-03-21 Thread Nuno Silva
Hi, just make the cgi version of php and feed some script to it ;) in unix you can start the script with: #!/path/to/php -q ?php echo "hello"; ? good luck, Nuno Christian Dechery wrote: Correct me if I'm completely out of my mind here (often I am). But I think, I read somewhere that u

RE: [PHP] executables (.exe)

2001-03-21 Thread Jonathan Sharp
give the full path to the php.exe file... C:\php\bin\php.exe C:\path\to\php-script.php cheers, -Jonathan -Original Message- From: Christian Dechery [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 21, 2001 5:25 PM To: [EMAIL PROTECTED] Subject: [PHP] executables (.exe) Correct me