Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Here is how the url looks in the browser on my Cold Fusion action page after a form is submitted with 'Name' value of Richard and 'City' value of Atlanta. Can I hide those values so they dont show in the url???#!/usr/local/bin/perl -w use strict; use CGI qw(:standard); #Perl web CGI module use CGI::Carp qw(fatalsToBrowser); my $query = new CGI; my $name = $query->param("name") || ""; my $city = $query->param("city") || ""; #do perl mail stuff here #etc...... #now pass parameters here print $query->redirect("http://webserverhere/mydirectory/act.cfm?name= +$name&city=$city");
http://webserverhere/mydirectory/act.cfm?name=Richard&city=Atlanta
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Hiding passed values in url
by matija (Priest) on Mar 22, 2004 at 15:34 UTC | |
by Anonymous Monk on Mar 22, 2004 at 18:20 UTC | |
by matija (Priest) on Mar 22, 2004 at 21:28 UTC |