Hi,
I have string like this:
@strings = split(/&/, $ENV{QUERY_STRING});
my($email, $qpass, $query) = @strings;
The first $email is the user email, $qpass is the user password and $query is the query string. So right now, all my links are like this:
login.cgi?$email&$pass&login_string. I want to turn to like this:
login.cgi?email=$email&pass=$pass&mode=login.
Any idea how?
I have string like this:
@strings = split(/&/, $ENV{QUERY_STRING});
my($email, $qpass, $query) = @strings;
The first $email is the user email, $qpass is the user password and $query is the query string. So right now, all my links are like this:
login.cgi?$email&$pass&login_string. I want to turn to like this:
login.cgi?email=$email&pass=$pass&mode=login.
Any idea how?