<?php require_once("includes/acl.inc"); ?>
<p class="pgtitle">Status: Process Information</p>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="listtopic">Processes information</td>
</tr>
<tr>
<td class="listr">
<?php
exec("$CMD_PS -el", $procs);
print "<pre>".implode("\n", $procs)."</pre>";
?>
</td>
</tr>