Hi,
In ASP I have a constant:
Public Const CONST_CUSTOMER = "10100"
I want to pass this constant from ASP to a PHP site hosted elsewhere.
Therefor I would like to encrypt the customer number in ASP so I can make a link: site.com/cust_id=<encrypted customer id>
My PHP page will receive this value and decrypt it again.
Can anybody help me with this?
I always use MD5 hashes on PHP pages but I couldn't find this feature in ASP.
Thanks in advance!
John