Click to See Complete Forum and Search --> : ?name=value&name=value
#!perl
01-19-2006, 09:03 PM
I just realized that most forums try to block dynamic images by searching for the query string. I need to use a query string (or some other method to send data via the URL) for my script. I tried using the hex equivalent of the ? but it didn't work. Is there any other way to accomplish this?
Ultimater
01-23-2006, 03:58 PM
I assume you tried: %3f and it didn't work.
Try mixing HTML and URI escaping: ? and even a mix: %26%2363%3b
Have you tried a double URI escape? %253f
Do hashes work? You could write up a Perl program to read the hash and use some kind of creative code to treat the hash like a querystring.
Maybe something like escape every single character of the querystring so you'd even be escaping the letter "a" into it's hex code "61" and since every 3rd character would be a "%", you can just omit them all.
Example, the following:
whatver.pl?p=HI+how+are+you%21
Would turn into this:
whatever.pl#703d48492b686f772b6172652b796f75253231