RE: [PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Rea_David
] How can you execute UNIX scripts from PHP Hi Kevin, Thanks very much for your reply, but I'm having no luck with it. In the test that I'm doing, I'm using the same code as you provided. It's on a Solaris system & the permissions & ownership of the shell script

RE: [PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Rea_David
TED]] Sent: 18 February 2003 13:26 To: [EMAIL PROTECTED] Subject: Re: [PHP] How can you execute UNIX scripts from PHP This one time, at band camp, [EMAIL PROTECTED] wrote: > Hi everyone, > > How can you execute UNIX scripts from PHP. If somebody could let me > know it would be

Re: [PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Kevin Waterson
This one time, at band camp, [EMAIL PROTECTED] wrote: > Hi everyone, > > How can you execute UNIX scripts from PHP. If somebody could let me > know it would be great. if you have a shell script called blah.sh $script = 'blah.sh'; exec($script); system($script); // my favourite or if you

[PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Rea_David
Hi everyone, How can you execute UNIX scripts from PHP. If somebody could let me know it would be great. Thanks Dave -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php