Jeff Westman wrote:

> Dan Muey <[EMAIL PROTECTED]> wrote:
>
>
> Perfect!  Exactly what I was looking for.  I can deal with the
> paths/permissions/etc.  I'm just trying to figure out how to get started.
> Oh, would I call this inside a web page with a <SCRIPT> tag or something?
> How do I point to the CGI script?
>
> Thanks again...!
>
> Jeff

Try this:

<html>
<head>

<title> Joseph's first Perl-based form </title>

</head>
<body bgcolor="d0d0ff">
<form method=POST action="FormTest.pl">
Name <input name="Name" type=text value=""> <br>
Rank <input name="Rank" type=text value=""> <br>
Serial Number <input name="Serial" type=text value=""> <br>
<input type=submit value="Launch Perl">
</form>
</body>
</html>
Then use CGI to get the parameters.

perldoc CGI

Joseph


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to