Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: web based bibliography

by csuhockey3 (Curate)
on Jan 02, 2005 at 02:30 UTC ( [id://418733]=note: print w/replies, xml ) Need Help??


in reply to web based bibliography

If I understand correctly, you need to get/store/display information from a user via a form. I would build a quick CGI and store that information in a flat file and display the contents of that flatFile. Something along the lines of:
(this is just scratch)
#!/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") ...
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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://418733]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (6)
As of 2024-04-25 10:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found