fpw138 has asked for the wisdom of the Perl Monks concerning the following question:
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: What are the steps to put the form data into MS Access using Perl CGI?
by olly (Scribe) on Apr 30, 2001 at 14:20 UTC | |
If you are new to coding then you are really diving in head forward, but hey if you get it done you will feel even better. You will have to make the form ofcourse and could then make a CGI script in perl in which you parse the form using CGI.pm for example (for more information about it type perldoc cgi) Then you have to contact the the database to store the information there is another node about it here. If you need more help I suggest you search around a litle because there is alot of information in already given answers. Imagination is more important than knowledge -Einstein- | [reply] |
Re: What are the steps to put the form data into MS Access using Perl CGI?
by InfiniteSilence (Curate) on Apr 30, 2001 at 18:58 UTC | |
For those of you who notice that I used CGI and then manually added table tags, I seemed to have a problem with the way CGI handles manually defined tags on different systems. This method is thus more portable for me. Celebrate Intellectual Diversity | [reply] [d/l] |
Re: What are the steps to put the form data into MS Access using Perl CGI?
by SageMusings (Beadle) on May 01, 2001 at 00:20 UTC | |
| [reply] [d/l] |
Re: What are the steps to put the form data into MS Access using Perl CGI?
by olly (Scribe) on Apr 30, 2001 at 15:04 UTC | |
If you are new to coding then you are really diving in head forward, but hey if you get it done you will feel even better. You will have to make the form ofcourse and could then make a CGI script in perl in which you parse the form using CGI.pm for example (for more information about it type perldoc cgi) Then you have to contact the the database to store the information there is another node about it here. If you need more help I suggest you search around a litle because there is alot of information in already given awnsors. Imagination is more important then knowledge -Einstein- Originally posted as a Categorized Answer. | [reply] |