Hi list

On the client side I have this script :

  get myVar
  get compress(it)
  get base64encode(it)

  POST ("a=" & urlencode(it)) to URL
("http://www.domain.com/irev/myScript.lc?";)
  put base64decode(it) into myVar
  put decompress(myV) into myVar
  answer myVar

and on the server side I have :

  put $_POST["a"] into myVar
  put URLDecode(myVar) into myVar
  put base64decode(myVar) into myVar
  put decompress(myVar) into myVar


and this returns a compilation error on the server side.
But if I remove the line "put URLDecode(myVar) into myVar", then it works...

What am I missing ?

Thanks in advance
jbv


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to