>>876
(?_?)
例えを分かりやすくするために…

<?php
header("Content-type: text/plain");
system('hostname'),;
system('uptime');
?>
■■表示結果(system.php)■■
localhost,6:45PM,4, 0.38, 0.31

これを、print.phpに表示したいと思ってます。
<table>
  <tr>
    <th>HOST NAME</th><th>UPTIME</th>
  </tr>
  <tr>
    <td>localhost</td>
    <td>6:45PM,4, 0.38, 0.31</td>
  </tr>
</table>

どうすれば出来るのでしょうか?