Hi.
O.K. I think I see the problem. Can you check for these:
In your HTML form, have you set up the form fields similar to this:
<FORM METHOD=POST ACTION="/Path/To/CGI/app.pl ( or .cgi )>
Name:
<INPUT TYPE=TEXT NAME="name">
<BR>
<INPUT TYPE=SUBMIT VALUE="Click here to send the data!">
</FORM>
Then...in the program that is called by action ( see above ), it should look something like this:
#!/usr/bin/perl -wT
use strict;
use CGI qw( :standard );
use CGI::Carp qw( fatalsToBrowser );
print "Content-type: text/html\n\n";
my $name = param( "name" ); #This might be the problem.
if( $name eq "" )
{
&printform();
}
else
{
&results();
}
...the remainder of your code...
/msg me if this doesn't solve the problem o.k?
Hope this helps,
-DK ( "Meow")
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.