I'm looking for a list of browser variables(??), but when I searched google for "%20" and "browser variables" but came up with nothing, are they not called browser variables? and does anyone have a link to a list of them?
browser variables (%20 etc)
BlitzMax Forums/BlitzMax Programming/browser variables (%20 etc) 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 = 20 HEX = 32 DEC = CHR$(32) = Space
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 = 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
Any ASCII chart would do.
wrong post
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.
There's a couple of urlencode() functions in the archives. I wrote one, and recently someone did a cleaner urlencode/decode set.