Hi,
I'd like to know the path where the php is installed. I mean I'm trying to use the system() function and I do not know which path I need to put there.
system( %This Part% myscript.php);
Is there a way to know the %This Part% in the code above?
If PHP was installed by a knowledgeable administrator, the executable should have been placed in the server's deafault path, in which case you would simply execute something like "php -f myscript.php".
Thanks, I appreciate it.