I have a query string that was encrypted and decrypted on the second page. The string originally held some values that need to be used on the second page. Problem the values are in just one large string.
Ex.
What's returned is msg=Florida&pro=4508
Commonly passing from page to page is accomplished with a $_GET command, however since the data is initially encrypted, this is not an option. How do I transform this data into (variable=data) form?
Ex.
What's returned is msg=Florida&pro=4508
Commonly passing from page to page is accomplished with a $_GET command, however since the data is initially encrypted, this is not an option. How do I transform this data into (variable=data) form?