#!/usr/bin/php -nf \n" ."\n" ." \n" ." PHP script CGI test page\n" ." \n" ." \n" ."

PHP script CGI test page

\n" ."
ps ax\n");
$fp = popen("ps ax", "r");
while ($line = fgets($fp, 1024))
{
  print(htmlspecialchars($line));
}
print("
\n" ." \n" ."\n"); ?>