Re: [PHP] Running Scripts from the Command Line in Linux

2006-06-10 Thread OOzy Pal
On 6/8/06, Venky <[EMAIL PROTECTED]> wrote: Even better... if you want to use GET/POST, and access PHP scripts thru the web server, it is recommended to use wget very useful tool, supports http auth, etc. Regards Venky On 08/06/06, Brad Bonkoski <[EMAIL PROTECTED]> wrote: > $ php scr

Re: [PHP] Running Scripts from the Command Line in Linux

2006-06-08 Thread Venky
Even better... if you want to use GET/POST, and access PHP scripts thru the web server, it is recommended to use wget very useful tool, supports http auth, etc. Regards Venky On 08/06/06, Brad Bonkoski <[EMAIL PROTECTED]> wrote: $ php script.php OOzy Pal wrote: > How can I run a .php

Re: [PHP] Running Scripts from the Command Line in Linux

2006-06-08 Thread Brad Bonkoski
$ php script.php OOzy Pal wrote: How can I run a .php script from the command in Linux? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Running Scripts from the Command Line in Linux

2006-06-08 Thread Rabin Vincent
On 6/8/06, OOzy Pal <[EMAIL PROTECTED]> wrote: How can I run a .php script from the command in Linux? $ php yourscript.php Rabin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Running Scripts from the Command Line in Linux

2006-06-08 Thread Dave Goodchild
On 08/06/06, OOzy Pal <[EMAIL PROTECTED]> wrote: How can I run a .php script from the command in Linux? 1. run /usr/local/bin/php (or wherever the php binary is, run which php to find out) scriptname 2. add the hash bang to the start of the script and run it by typing the scriptname. --

[PHP] Running Scripts from the Command Line in Linux

2006-06-08 Thread OOzy Pal
How can I run a .php script from the command in Linux? -- OOzy Kubuntu-Dapper -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] running scripts

2003-08-14 Thread BrianS
I am sure this has been asked dozens of times so please forgive if this is repetitive. I have an application from which I would like to incorporate running scripts. I saw that I can pass files to php.exe but this is more for a batch process and so my application wouldn't have access to any script

Re: [PHP] Running scripts in non-php file

2003-04-04 Thread Rasmus Lerdorf
That should be all you need. Make sure that something isn't re-assigning those extensions later on in your conf file. Perhaps you changed the wrong addtype? Liek a commented out one? -Rasmus On Fri, 4 Apr 2003, Tom Tsongas wrote: > Hi folks. > > This will probably sound like a stupid question

[PHP] Running scripts in non-php file

2003-04-04 Thread Tom Tsongas
Hi folks. This will probably sound like a stupid question, but I will ask it anyway: how can I get the PHP interpreter to execute scripts in files that don't have the .php extension? i.e. if I want to embed php code into a .html or .xml file that gets run. I thought all I had to do was add the

[PHP] running scripts onunload

2001-10-23 Thread Impex Holidays Maldives / Hasan
Hi everyone, I can use javascripts onunload to run PHP file with a new window. Is there anyway i can run PHP script file on ONUNLOAD with out opening a new window ( in the back ground). Any one help will be greatly appreciated. Best regards, Hasan -- PHP General Mailing List (http://www.php

Re: [PHP] Running scripts from within PHP similar to SSI

2001-06-25 Thread Richard Lynch
ROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: Bilal Deniz <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Sunday, June 24, 2001 1:04 AM Subject: [PHP] Runnin

[PHP] Running scripts from within PHP similar to SSI

2001-06-23 Thread Bilal Deniz
Hi All, Just wondering if it were possible to do like the following SSI line: from within php. I know a php alternative should be made, but for the time being and for future's sake So far i've tried back ticks, passthru(), exec(), but the problem is that the URI and other variables aren

Re: [PHP] running scripts

2001-01-11 Thread Alex Black
The Turing Studio, Inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 Saul Zaentz Film Center 2600 Tenth St Suite 433 Berkeley, CA 94710-2522 > From: [EMAIL PROTECTED] ("DonJuan") > Newsgroups: php.general > Date: 11 Jan 2001 05:54:42 -0800 > Subject: [P

AW: [PHP] running scripts

2001-01-11 Thread Sebastian Stadtlich
; Betreff: [PHP] running scripts > > > Hi, > > I've written a weekly newsletter in php3 and there are more > then 900 readers of the email sent. > The script is always started through a web-browser (pe. > www.myurl.com/admin ). > > Is there a way to keep the s

[PHP] running scripts

2001-01-11 Thread DonJuan
Hi, I've written a weekly newsletter in php3 and there are more then 900 readers of the email sent. The script is always started through a web-browser (pe. www.myurl.com/admin ). Is there a way to keep the script running, even after the browser is closed? (sending 900 emails might take a while)