我试图创建一个从ssh连接读/写的控制台。我使用多行文本框来接收所有信息。如何将我的php结果回显到同一页面上多行文本框中的新行而不删除框中的任何其他行?
<?php
$Command = $_POST["command"];
$connection = ssh2_connect('IP', 22);
ssh2_auth_password($connection, 'ID', 'PASS');
$stream = ssh2_exec($connection, '$Command);
stream_set_blocking($stream, true);
$stream_out = ssh2_fetch_stream($stream, SSH2_STREAM_STDIO);
echo stream_get_contents($stream_out);
?>`
<body bgcolor="#999999" text="#000000">
<form id="Console" name="Console" method="post" action="#">
<p>
<textarea name="feedback" cols="146" rows="30" id="feedback"></textarea>
</p>
<p><strong>Enter A Command :</strong>
<input name="Command" type="text" id="command" size="100" />
<input type="submit" name="Clear" id="Clear" value="Clear Command" />
<input type="submit" name="button" id="Submit" value="Submit" />
</p>
</form>
</body>
</html>
Multiline文本区域是反馈,我的结果回应给我,我只是不确定如何在不删除任何旧行的情况下将它们放在文本框中的新行上。