# Process listing

**URL:** https://forum.kirupa.com/t/process-listing/65548
**Category:** Uncategorized
**Created:** [September 27, 2004, 5:06pm UTC](https://forum.kirupa.com/t/process-listing/65548 "2004-09-27T17:06:02Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![icio](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/icio/32/484_2.png) [@icio](https://forum.kirupa.com/u/icio)
#### Post date: [September 27, 2004, 5:06pm UTC](https://forum.kirupa.com/t/process-listing/65548/1 "2004-09-27T17:06:02Z")

</div>

hey guys. i’m needing a php script that will get me a list of the user’s processes. this isn’t for anything naughty - i’m helping a friend.

if anyone could help me out that would be great - or if you could tell me if it’s possible - that’s be great too.

thanks in adv. 😃

[center] **200TH POST** [/center]  
[center] :thumb: :party: 🍺 :party: 🍺 :party: 🍺 :party: :thumb: [/center]

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [September 27, 2004, 6:00pm UTC](https://forum.kirupa.com/t/process-listing/65548/2 "2004-09-27T18:00:26Z")

</div>

errr I’ve never heard of doing such a thing with any programming language but I believe I can say that this is **Definitely NOT possible!** :to:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [September 27, 2004, 8:17pm UTC](https://forum.kirupa.com/t/process-listing/65548/3 "2004-09-27T20:17:13Z")

</div>

Are you talking about seeing what processes are running on the server? What OS? $top will list those (linux/Unix). It depends on what privelges are given to the web server user (and what OS) If it’s on linux/unix I doubt that the apache user has those privelges, at leats they shouldn’t. You can run commands using backticks (Linux/Unix). Like:

```php

echo `top | grep "httpd"`;

```

I don’t use windows for servers so I don’t know if there is a difference (php syntax) from running dos commands via php.

- also using exec(); does the same thing as backticks.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [September 27, 2004, 9:43pm UTC](https://forum.kirupa.com/t/process-listing/65548/4 "2004-09-27T21:43:13Z")

</div>

no,the processes running client-side. is this possible? could i use js or vbs?
