Does anyone have a simple efficient "pseudo" crypt/decrypt function?
Here's what I want: I want the visitor's name and address to carry over to my next page, but I don't want the visitor's name and address to blatantly appear in the URL window.
There's no real need for "genuine encryption," as there is nothing sensitive; I just want it for aesthetic reasons.
Here is an example. What I have now:
<a href="nextpage.php">click here</a>
What I don't want:
<a href="nextpage.php?visitor=<?php print $visitorinfo; ?>">click here</a>
(I don't want that because it will show this in the URL location of the browser: nextpage.php?John Doe 123 Apple Street Anytown)
What I do want to see in the URL window:
nextpage.php?oueljeljdfoudjdfdoeuoljeljlejjdljuouodjrj3473jduodldfj (you get the idea)
And, then, on the nextpage.php, it'll decrypt it.
thanks