Home » Developer & Programmer » Forms » Oracle Form
Oracle Form [message #84281] Tue, 24 February 2004 12:09
Victor Tsao
Messages: 1
Registered: February 2004
Junior Member
I have a website that I created which calls on a PERL script FORM TAG REMOVED ACTION=/cgi-bin/script.pl METHOD=POST>

This is the Perl script which output into the screen/file. I want to output into a database screen output. How would I do that? Suggestions? Comments?

Victor  

--

#!/usr/bin/perl -wT

use strict;

use CGI ':standard';

 

my $last;

my $first;

my $email;

my $address1;

my $address2;

my $comments;

$last = param("last");

$first = param("first");

$email = param("email");

$address1 = param("address1");

$address2 = param("address2");

$comments = param("comments");

open (FILE, ">> list.txt");

print FILE "$last, $first, $email, $address1, $address2, $commentsn";

close (FILE);

 

print "Content-type: text/htmlnn";

print "Thank you for submitting your information.r";

print "The following is what you have entered your

";

print "
Last Name: $last

First Name: $first

Email:        $email

Address: $address1,  $address2

Comments: $comments
";
Previous Topic: Terminal
Next Topic: Extract UN EDI File Program ?
Goto Forum:
  


Current Time: Fri Apr 26 01:06:22 CDT 2024