Fred Claus
Well-Known Member
- Reaction score
- 464
- Location
- Grand Island, NY
Ok, I'm at a loss, and I could use some help. I am an instructor for some college courses and they threw this course me. It appears the instructions are wrong. For the life of me I can't seem to find the minute issue that is causing it not to work. The student is asked to make a form on a website where the person can sign up for a fan club. Then the html is supposed to pull a perl script to post thank you for contacting us you are not registered (something like that). The code is below based on how the the instructions say to do it. When you press join, it just displays the body of the perl script. What am I missing?
HTML code:
<!DOCTYPE html>
<html>
<head>
<title>Dream Theater Fan Club</title>
</head>
<body>
<h1>Join with Dream Theater!</h1>
<form method='post' action='signup.pl'>
<fieldset>
<legend>Contact Info</legend>
<label for="name">Name:</label><input type="text" name="name" />
<label for="e-mail">E-mail:</label><input type="text" name="e-mail" />
</fieldset>
<fieldset>
<legend>Comments</legend>
<textarea cols="50" name="comments"></textarea>
</fieldset>
<input type="submit" value="Join" />
<input type="reset" value=" Start over" />
</form>
<a href="index.html">Go home</a>
</body>
</html>
Perl Script:
#/perl/bin/perl
use strict;
use warnings;
use CGI;
my $cgi=CGI->new();
print
$cgi->header('text/html'),
$cgi->start_html('Fanclub Signup'),
$cgi->h1('You are now signed up.'),
$cgi->p('Thank you for signing up,',
$cgi->strong($cgi->param('name')),'.'),
$cgi->p('The following comment has been submitted:'),
$cgi->blockquote($cgi->param('comments')),
$cgi->end_html;
HTML code:
<!DOCTYPE html>
<html>
<head>
<title>Dream Theater Fan Club</title>
</head>
<body>
<h1>Join with Dream Theater!</h1>
<form method='post' action='signup.pl'>
<fieldset>
<legend>Contact Info</legend>
<label for="name">Name:</label><input type="text" name="name" />
<label for="e-mail">E-mail:</label><input type="text" name="e-mail" />
</fieldset>
<fieldset>
<legend>Comments</legend>
<textarea cols="50" name="comments"></textarea>
</fieldset>
<input type="submit" value="Join" />
<input type="reset" value=" Start over" />
</form>
<a href="index.html">Go home</a>
</body>
</html>
Perl Script:
#/perl/bin/perl
use strict;
use warnings;
use CGI;
my $cgi=CGI->new();
$cgi->header('text/html'),
$cgi->start_html('Fanclub Signup'),
$cgi->h1('You are now signed up.'),
$cgi->p('Thank you for signing up,',
$cgi->strong($cgi->param('name')),'.'),
$cgi->p('The following comment has been submitted:'),
$cgi->blockquote($cgi->param('comments')),
$cgi->end_html;