in reply to web based bibliography
That should only be a starting place. Do you have any code you can post or convey what your approach has been so far? If you are new to CGI, see this CGI Course by Ovid -- it will bring you up to speed in no time.#!/usr/bin/perl -wT use strict; use CGI; my $q = CGI->new(); my @names = $q->param; open( FLAT, ">> flatfile.data") or die $!; print FLAT @names; #format however you wish close(FLAT); ... #display the flat file how you like, i.e. #print $query->header("text/html") ...
|
---|