RE: [PHP] Executing PHP

2007-10-26 Thread Instruct ICC
> > Well on Mac/Unix/Linux you could type "ps" at the terminal to see the path > > to the running processes or "which php" to see which one you would invoke. > > > > Maybe you can upgrade to a Mac? > > > > Parallels running Windows XP didn't show me such info in the Task Manager; > > sorry. > >

Re: [PHP] Executing PHP

2007-10-26 Thread Philip Thompson
On 10/26/07, Instruct ICC <[EMAIL PROTECTED]> wrote: > > > Well on Mac/Unix/Linux you could type "ps" at the terminal to see the path > to the running processes or "which php" to see which one you would invoke. > > Maybe you can upgrade to a Mac? > > Parallels running Windows XP didn't show me such

RE: [PHP] Executing PHP

2007-10-26 Thread Instruct ICC
Well on Mac/Unix/Linux you could type "ps" at the terminal to see the path to the running processes or "which php" to see which one you would invoke. Maybe you can upgrade to a Mac? Parallels running Windows XP didn't show me such info in the Task Manager; sorry. > Date: Thu, 25 Oct 2007 15:

Re: [PHP] Executing PHP

2007-10-26 Thread Stut
Philip Thompson wrote: On 10/25/07, Stut <[EMAIL PROTECTED]> wrote: Philip Thompson wrote: Hi. Feel free to tell me this is a "duh" question. I don't know which PHP executable (php.exe, php-cgi.exe, php-win.exe) is being run - how can I tell? I am on a Win2k3 server running PHP5 (manual inst

Re: [PHP] Executing PHP

2007-10-26 Thread Philip Thompson
On 10/25/07, Stut <[EMAIL PROTECTED]> wrote: > > Philip Thompson wrote: > > Hi. Feel free to tell me this is a "duh" question. I don't know which > PHP > > executable (php.exe, php-cgi.exe, php-win.exe) is being run - how can I > > tell? > > > > I am on a Win2k3 server running PHP5 (manual install)

Re: [PHP] Executing PHP

2007-10-25 Thread Stut
Philip Thompson wrote: Hi. Feel free to tell me this is a "duh" question. I don't know which PHP executable (php.exe, php-cgi.exe, php-win.exe) is being run - how can I tell? I am on a Win2k3 server running PHP5 (manual install) and IIS6. I've pointed to the php5isapi.dll in IIS. I'm assuming b/

RE: [PHP] executing php script from sql field.

2004-06-18 Thread Jay Blanchard
[snip] Hello I am trying to get some php code that's in a mysql field to execute...all I can get it to do is print the php code as human readable... I'm trying somthing like this..: print $sql["data"]; where data has something like this in it: Hello, this is anyone have any suggestions? [/sn

Re: [PHP] executing php scripts via cron

2004-05-19 Thread raditha dissanayake
Merlin wrote: Hi there, I am trying to run a php script via cron. Problem is, that it does not work if I include the whole path in crontab Currently it looks like: 0 6 * * * php /home/www/project/app_cron/follow_up_new_members.php > /dev/null does typing in php /home/www/project/app_cron/follow_

Re: [PHP] executing PHP via cron

2004-05-18 Thread Oliver Hankeln
[EMAIL PROTECTED] wrote: How about just using cron to call wget, and wget the URL of your page? It depends. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] executing php scripts via cron

2004-05-18 Thread Clifford W. Hansen
Merlin, > 0 6 * * * php /home/www/project/app_cron/follow_up_new_members.php > /dev/ null That looks right to me, have you tried executing the command with the full path? I have a couple of php scripts running as cron jobs and web scripts... Also try "php -q scriptname" -q is for quiet which su

RE: [PHP] executing php scripts via cron

2004-05-18 Thread rich
> I am trying to run a php script via cron. Problem is, that it > does not work if I > include the whole path in crontab > > Currently it looks like: > 0 6 * * * php > /home/www/project/app_cron/follow_up_new_members.php > /dev/null > > Most likeley because the webserver root for the project is: >

RE: [PHP] Executing PHP shell script in PHP

2004-04-06 Thread jon roig
The shell script is in PHP as well? Presumably, you could either access it as an include or execute it using exec. -- jon --- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: Brent Clark [mailto:[EMAIL PROTECTED] Sent:

Re: [PHP] Executing PHP code in a database

2003-03-08 Thread Ernest E Vogelsinger
At 06:15 08.03.2003, Leo Spalteholz said: [snip] >I have a table that stores all the "boxes" that my website will >display on the sides. So far the content is simply stored in a text >field and then substituted for the box body. However this way I >can't

Re: [PHP] Executing PHP code in a database

2003-03-07 Thread Leo Spalteholz
On March 7, 2003 09:15 pm, Leo Spalteholz wrote: > Hi, > I have a table that stores all the "boxes" that my website will > display on the sides. So far the content is simply stored in a > text field and then substituted for the box body. However this way > I can't have any php code in the boxes..

Re: [PHP] Executing PHP stored in MySQL-database?

2001-05-24 Thread Pavel Jartsev
aquariuz wrote: > > Hi, > Is it possible to execute PHP stored in a MySQL-database? > If so, how to do it? > > In the example below I store "Hello world!" in a database, and next I > echo it. "Hello world!" is printed on the screen. > > But how to > * store PHP-code in a database > * and execut