string system ( string $command [, int &$return_var ] )
<?php echo '<pre>'; $last_line = system('ls -l ~', $retval); echo '<hr />Return value: ' . $retval; echo '</pre>'; ?>