Re: Sending and = over a URL

2015-03-15 Thread Phillip Vector
Thank you! :) On Sun, Mar 15, 2015 at 1:06 AM, Andrew Scott andr...@andyscott.id.au wrote: Try URLEncode and URLDecode Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Sun, Mar 15, 2015 at 6:37 PM, Phillip Vector

Sending and = over a URL

2015-03-15 Thread Phillip Vector
I have a program that sends me info via a URL. I'd like to encrypt it, but when I do, I get 's and ='s in the string. Is there some way I can still send the whole string with those characters in it through a base URL string or is there an encryption method that doesn't use those special

Re: Sending and = over a URL

2015-03-15 Thread Phillip Vector
If it helps... cfoutput cfset ServerPassword = 'Test123' cfset Text = ReplaceNoCase(cgi.query_string, 'fuseaction=IncomingMessage.DefaultMessage=', '') #Text#P cfset Text = Decrypt(text,'#ServerPassword#') #Text#P cfif find('IncomingMessage.DefaultMessage=',Text)

Re: Sending and = over a URL

2015-03-15 Thread Andrew Scott
Try URLEncode and URLDecode Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Sun, Mar 15, 2015 at 6:37 PM, Phillip Vector vec...@mostdeadlygame.com wrote: If it helps... cfoutput cfset ServerPassword = 'Test123'