[PHP] ps command in php

2003-10-06 Thread Michael P. Carel
Hi to all, I'm trying to have the output of the ps -ef command in Linux to my browser. Can anyone help how to properly have the output in proper format. I've used the passthru() function but the output is scrambled. Thanks in advanced. Mike -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] ps command in php

2003-10-06 Thread David Otton
On Mon, 6 Oct 2003 14:55:56 +0800, you wrote: I'm trying to have the output of the ps -ef command in Linux to my browser. Can anyone help how to properly have the output in proper format. I've used the passthru() function but the output is scrambled. Scrambled how, exactly? Remember, your

Re: [PHP] ps command in php

2003-10-06 Thread Mike Migurski
I'm trying to have the output of the ps -ef command in Linux to my browser. Can anyone help how to properly have the output in proper format. I've used the passthru() function but the output is scrambled. What do you mean by 'scrambled'? The following works for me: echo 'pre', `ps -ef`,

Re: [PHP] ps command in php

2003-10-06 Thread Michael P. Carel
I'm doing like this: $ps = (passthru(ps -ef)); echo $ps; my output is something like this: UID PID PPID C STIME TTY TIME CMD root 1 0 0 Sep19 ? 00:00:04 init [3] root 2 1 0 Sep19 ? 00:00:00 [kflushd] root 3 1 0 Sep19 ? 00:00:09 [kupdate] root 4 1 0 Sep19 ? 00:00:00 [kpiod] root 5 1 0 Sep19 ?

Re: [PHP] ps command in php

2003-10-06 Thread Mike Migurski
my output is something like this: UID PID PPID C STIME TTY TIME CMD root 1 0 0 Sep19 ? 00:00:04 init [3] root 2 1 0 Sep19 ? 00:00:00 [kflushd] root 3 1 0 Sep19 ? 00:00:09 [kupdate] root snip any idea? Yeah, see David Otton's response, or look at the HTML source of your output.

Re: [PHP] ps command in php

2003-10-06 Thread Nitin
your question has already been answered: use: echo pre $ps /pre; It should definitely help Nitin - Original Message - From: Michael P. Carel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 06, 2003 12:51 PM Subject: Re: [PHP] ps command in php I'm doing like

Re: [PHP] ps command in php

2003-10-06 Thread Michael P. Carel
solution for this? your question has already been answered: use: echo pre $ps /pre; It should definitely help Nitin - Original Message - From: Michael P. Carel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 06, 2003 12:51 PM Subject: Re: [PHP] ps command

Re: [PHP] ps command in php

2003-10-06 Thread Pavel Jartsev
Michael P. Carel wrote: When I do this: ?header(Content-Type: text/plain); $ps = (passthru(ps -ef)); ? table width=100% border=0 cellpadding=0 cellspacing=0 tr td width=100% height=287 valign=top? echo $ps; ?/td /tr /table I can also see the HTML code, i need to put the output inside

Re: [PHP] ps command in php

2003-10-06 Thread Michael P. Carel
thanks to all its working now Michael P. Carel wrote: When I do this: ?header(Content-Type: text/plain); $ps = (passthru(ps -ef)); ? table width=100% border=0 cellpadding=0 cellspacing=0 tr td width=100% height=287 valign=top? echo $ps; ?/td /tr /table I can also see