i need a script that decodes the url before it sends it to my tradescript... arrowtrader doesn't accept encoded urls...
url decoder
Collapse
X
-
Tags: None
-
-
Comment
-
Comment
-
-
kinda like this, but with all the characters, and able to take input string from tgp script and send it to trade script...
function deCode() {
strSelection = hahahahahahahahahahaselection.createRange().text
strSelection = strSelection.replace(new RegExp("<","g"), "<");
strSelection = strSelection.replace(new RegExp(">","g"), ">");
hahahahahahahahahahaselection.createRange().text = strSelection;
return;
}Comment
-
hmmm... not sure if that'll work... lemme try... brb...Originally posted by Repetitive Monkey
$url=rawurldecode($url);Comment
-

Comment