#!/usr/bin/perl =pod This file is originally intended to be a cgi program for writing online journals. Original author: Caro This is the second of two files to deal with online conferences. This one does the work of taking user data in and publishing it to the web in auto-refreshing pages =cut use English; use Fcntl ':flock'; # import LOCK_* constants require "cgi-lib.pl"; $ret=&ReadParse; # Get username and textarea value $user = $in{user}; $speaker = $in{speaker}; $userinput = $in{userinput}; # Call the subroutine to print the tops of cgi screens: &printHeader; # If no user name dump them unless(defined($user)) { print "
Sorry, you have no user name! Please log in.