RE: [PHP] Telnet and PHP

2001-07-01 Thread Warren Vail
arren Vail Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Telnet and PHP Instead of performing a send for each stroke, the user code type in a whole string in a text box, and then submit that string. I have found this code at http://www.phpbuilder.com/mail/php-general/2001051/1479.php: sock = fsoc

Re: [PHP] Telnet and PHP

2001-06-30 Thread jon
23); echo $tn->read_till("ogin: "); $tn->write("admin\r\n"); echo $tn->read_till("word: "); $tn->write("thieso\r\n"); echo $tn->read_till(":> "); $tn->write("ps\r\n"); echo $tn->read_till(":> "); echo

RE: [PHP] Telnet and PHP

2001-06-30 Thread Warren Vail
ave's Telnet and fashion an extension to PHP. Til then, try the options above, Warren Vail -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 30, 2001 10:36 AM To: [EMAIL PROTECTED] Subject: [PHP] Telnet and PHP I was doing some research on

[PHP] Telnet and PHP

2001-06-30 Thread jon
I was doing some research on creating a webbased telnet client and I am unsatisfied with Java applets. I would like to create a server side telnet client, so the user side is only required to have a working web browser that supports HTML. Thus, I turned to PHP. I found one example, but it does