I am calling an iFrame from my PHP application with a query string:
<iframe src="https://www.example.com?account=12345"></iframe>
I need to encrypt the account parameter so that anyone viewing the source can not edit it and see private data. Something Like:
<iframe src="https://www.example.com?account=%5gbf&$yhbgvb7943"></iframe>
The www.example.com is on an IIS server (the devs are willing to work with me to decrypt their end).
What is the best way to perform this? I was thinking using open_ssl. Or would that be overkill?
Thanks