Click here to get back home

Perl code to fill-in online form

 HomeNewsGroups | Search | About
 comp.lang.perl.misc    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content
Subject Author Date
Perl code to fill-in online form Babul 03-21-2008
Get Chitika Premium
Posted by ccc31807 on March 24, 2008, 7:08 pm
Please log in for more thread options
> Hello everyone,
>
> I am trying to write a program in perl (windows) that I will use to
> fill out online form.

I assume that since you can write scripts on the server that you have
access to the httpd. This is how I would do it.

1. Configure your httpd for cgi. Then, write a test script to make
sure it works. You can configure your web server a couple of different
ways, so pick the one you like.

2. On the client side, make your html form the way you normally do.
<html><body>
<form action='post' method='/myurl/cgi-bin/form.cgi'>
<input type='text' name='week' />
<input type='submit' value='OK' />
</form>
</body></html>

3. On the server side use CGI.
#!/usr/bin/perl;
use CGI;
use strict;
my $week = param('week');
print "Content-type: text/html\n\n";
print "<html><body>My week is $week</body></html>
exit();

CC




Similar ThreadsPosted
Webcool24.com : Biggest worldwide Asian free Video multi language web , Travel, Sports, Racing cars , Massages techniques, Games , Fashions, Jokes , Top models , Free online IT learning , 5000 links, 250 free online TV , 50000 music video, nice la August 15, 2007, 8:58 am
online perl... March 25, 2005, 3:14 pm
PERL TK Online tutorial May 30, 2006, 12:16 am
Perl and Online Banking November 25, 2006, 1:54 pm
OO Perl Online Learning February 5, 2007, 12:15 pm
I'm looking for online lecture for perl language? March 25, 2005, 3:12 pm
Good online tutorials on Perl November 1, 2005, 3:31 pm
Online forum source codes in Perl/CGI without SQL? October 23, 2004, 12:00 am
Online Graphing Calculator - Perl Backend June 22, 2006, 11:11 pm
New article online: 'Embedding Perl in database tables' March 18, 2005, 5:31 pm

Our other projects:

Art Dolls, Fairies and Mermaids - Sunnyfaces.net

Roy's Linux, Programming and Search Engines messages

1-Script XML SitemapXML Sitemap