Forum archive 2000-2006

Andy Wildenberg - characters in the key field

Andy Wildenberg - characters in the key field

by Arnold Pizer -
Number of replies: 0
inactiveTopiccharacters in the key field topic started 2/7/2001; 8:58:17 PM
last post 2/12/2001; 8:31:22 PM
userAndy Wildenberg - characters in the key field  blueArrow
2/7/2001; 8:58:17 PM (reads: 1193, responses: 1)
What character set is used for the "key" field in the submit form? The big question is "is it safe to pass the key as a GET parameter in a URL (i.e. is it guaranteed to have no & or ? characters)?"

<| Post or View Comments |>


userArnold K. Pizer - Re: characters in the key field  blueArrow
2/12/2001; 8:31:22 PM (reads: 1429, responses: 0)
The big answer is yes. The precise answer is:

my @Key_chars = ('A'..'Z', 'a'..'z', '0'..'9', '.', '^', '/', '!', '*');

<| Post or View Comments |>