#! c:/perl/bin/perl #! /usr/local/bin/perl # # rdjoin.pl # Version 1.0 Hideki Kanayama $joindir = "../joinlist"; $cgibin = "../cgi-bin"; $datafile = "$joindir/joinlist.dat"; $wrjoin = "$cgibin/wrjoin.pl"; print "Content-Type: text/html\n\n"; print "
"; print ""; print "\n"; open(DAT,"< $datafile"); while(){ s/[\r\n]*$//; ($num,$name,$join,$comment)=split(/,/); $comment =~ s/^$/\ /; if ($join eq 'off'){ next; } print ""; print ""; print ""; print ""; print "\n"; } print ""; print ""; print "
AttendeeComment 
$name$commentDelete
\n"; close(DAT);