Re: [PHP] php / unix functions

2002-12-17 Thread Greg
thru() > > -Original Message- > From: Greg [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 18, 2002 1:45 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] php / unix functions > > > I just want to display the output of 'uptime' and 'df'

RE: [PHP] php / unix functions

2002-12-17 Thread Martin Towell
in that case, try passthru() -Original Message- From: Greg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 1:45 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] php / unix functions I just want to display the output of 'uptime' and 'df' on a php page /

Re: [PHP] php / unix functions

2002-12-17 Thread Greg
I just want to display the output of 'uptime' and 'df' on a php page /Greg "Andy Turegano" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Well, what do you want them to do? > > > On Wed, 18 Dec 2002, Martin Towell wrote: > > > the only other way I know is to us

RE: [PHP] php / unix functions

2002-12-17 Thread Andy Turegano
Well, what do you want them to do? On Wed, 18 Dec 2002, Martin Towell wrote: > the only other way I know is to use: $output = `$cmd`; (ie, backticks) > > -Original Message- > From: Greg [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 18, 2002 1:27 PM > To: [EMAIL PROTECTED] > Sub

RE: [PHP] php / unix functions

2002-12-17 Thread Martin Towell
the only other way I know is to use: $output = `$cmd`; (ie, backticks) -Original Message- From: Greg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 1:27 PM To: [EMAIL PROTECTED] Subject: [PHP] php / unix functions Hi- Is there a built in way, besides using exec and system