Hi,
I want to pass some values to a cgi from another cgi
I try to do:
In CGI #1:
if ($validacion == 1) {
print <<'FINAL';
<html>
<head>
<title>Prueba</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="refresh"
content="0;URL=http://localhost/cgi-bin/servidores.cgi?validado=1">
</head>
<body bgcolor="#FFFFFF">
</body>
</html>
FINAL
}
In CGI #2:
my $validado=@ARGV[0];
What I need to do is tell the second cgi that the user is already known
without having to look for it in the DB again.
How can I do this? I'm trying to avoid cookies.
Any help?
Thanks,
Agus
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]