Hi:
I am trying to get my unique ID number sent to my show_post.
cgi program and it doesn't work. I get the variable name (unique_customer_id) but never the actual value. Can someone please help me with this.
TIA
#! /usr/bin/perl
print "Content-type: text/
html", "\n\n";
read(STDIN,$input,$ENV{'CONTENT_LENGTH'});
print <<'EOF';
<
html>
<head>
<title>Tracking Number</title>
</head>
EOF
$unique_customer_id = $$ . "-" . time();
print "$unique_customer_id";
print <<'EOF';
<body>
<form action="
cgi-bin/show_post.
cgi" method="post">
<input type="hidden" name="idnumber" value="$unique_customer_id">
</body>
</
html>
</body>
</
html>
EOF