Is it possible to write a dead simple html chat client ie one form
that can be accessed by two people :
ie a form that has two text areas
- one for me to write to
- one for another person to write to
both text areas have two buttons
- clear
- submit
On submit I want the html page to be updated.
I think perl etc is out as where I am I dont have cgi-bin available.
I'm on a unix machine and have perl that works but not in cgi-bin
(cant turn this on as not under my control).
eg file content
#!/usr/bin/perl
print "Content-type: text/html\n\n";
$t = "Hello World!";
print $t;
which appears in the browser as:
a) if file name = t.pl
#!/usr/bin/perl
print "Content-type: text/html\n\n";
$t = "Hello World!";
print $t;
b) if file name = t.html
#!/usr/bin/perl print "Content-type: text/html\n\n"; $t = "Hello
World!"; print $t;