browser variables (%20 etc)

BlitzMax Forums/BlitzMax Programming/browser variables (%20 etc)

plash(Posted 2007) [#1]
I'm looking for a list of browser variables (??). I searched Google for "%20" and "browser variables" but came up with nothing.
Are they not called browser variables? Does anyone have a link to a list of them?


xlsior(Posted 2007) [#2]
They are the hexadecimal equivalent of ASCII codes, so all you need is an ASCII table.

%20 = 20 HEX = 32 DEC = CHR$(32) = Space


FlameDuck(Posted 2007) [#3]
Google for "URL Encoding", or look it up on wikipedia.


plash(Posted 2007) [#4]
They are the hexadecimal equivalent of ASCII codes, so all you need is an ASCII table.

%20 = 20 HEX = 32 DEC = CHR$(32) = Space
%20 was the only one that I could think of off the top of my head, all I needed was a list..

Thanks FlameDuck


GfK(Posted 2007) [#5]
Any ASCII chart would do.


PantsOn(Posted 2007) [#6]
http://www.asciitable.com/

they've already done the hex conversion for you.


ziggy(Posted 2007) [#7]
wrong post


Raph(Posted 2007) [#8]
This is called URL Encoding.

There's a couple of urlencode() functions in the archives. I wrote one, and recently someone did a cleaner urlencode/decode set.