Re: [PHP] Run or execute a php cript within a php cript.

2001-09-20 Thread hvm
Hi all, Thanks a lot. Yours Hans -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Run or execute a php cript within a php cript.

2001-09-20 Thread Steve Edberg
You can do something like Any variables in the master script's scope are in the scope of the included files as well. If you want to actually REDIRECT the user to another page, you can use the header function to send a Location: header. See http://www.php.net/manual/en/control-struct

Re: [PHP] Run or execute a php cript within a php cript.

2001-09-20 Thread David Robley
On Fri, 21 Sep 2001 16:16, hvm wrote: > Hi all. > > Is there a command to execute (run) from HTML or a php4 script a other > php script without a mouse click (). > > I have a lot of php scripts and need them to execute from a master php > script. > > any help? > > Thanks all, > > Yours Hans. inc