Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-16 Thread Rajeev Rumale
ed Present. ___ - Original Message - From: "Rahul Garg" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 14, 2001 2:37 PM Subject: CGI-PERL-HTML...HELP!!! Hello Everybody, Well, I am developing an a

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-15 Thread Teresa Raymond
BTW: There is a beginners-cgi list: http://lists.perl.org/showlist.cgi?name=beginners-cgi I think this is partially what you are looking for. hyperlink way to send parameters can be done in html page w/out cgi script: http://www.yoursite.com/script.cgi?param=value,pa

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-14 Thread C.J. Collier
Heya Rahul, You'd probably find all this information in CGI.pm. It takes a bit to get used to it, but after that, it's smooth sailing. For more info, run this at your command prompt: perldoc CGI CGI.pm comes with the Perl distribution, so you don't have to worry about grabbing it from CPAN,

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-14 Thread Pete Sergeant
>1. where( & how) to write code in perl script(HTML) for actions >to occur on clicking hyperlinks . In my very humble opinion, your best option here is to pass the script information using the query_string. So, for example: http://localhost/la.pl?sample_data 'sample_data' is then available from

CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-13 Thread Rahul Garg
Hello Everybody, Well, I am developing an appl. in CGi-PERL that wil run on webserver . The app will call files on webserver and make changes in it. The approach i am following is : 1). For the web interface i will develop perlscripts with html code(forms) in it. This i will do . 2)