#!/usr/bin/perl
print "Content-type: text/html\n\n";
use CGI ':standard';
$temp = param('who');
$temp =~ s/\ //g;
open(FIL,">who.txt");
print FIL $temp;
close(FIL);
$temp = param('message');
open(FIL,">message.txt");
print FIL $temp;
$temp =~ s/\n/\
/g;
close(FIL);
$temp = param('still');
open(FIL,">still.txt");
print FIL $temp;
close(FIL);
open(FIL,"who.txt");
$who = ;
close(FIL);
open(FIL,"message.txt");
$message = join('',);
$message =~ s/\
/\n/g;
close(FIL);
open(FIL,"still.txt");
$still = int();
close(FIL);
open(FIL,"count.txt");
$count = int();
close(FIL);
print "Currently, $count messages have been sent
\n";
print "";