Oh, I'm sorry I was not very clear. I briefly mentioned that I encode my vars into a single var in URL. I use a class that takes all my $_GET vars
page.php?var1=1&var2=bob&var3=Monday
then encodes them into a single string and outputs the them like
page.php?encoderVar=A1JHXygCE1JRTUJbUlRUFVoGeiFeBAcUFQtfRA1
It also decodes it back on receipt for the page to function properly.
So what I need to do is to get a snapshot of the encoded URL, because I do not need to decode it, but rather email it.
Is this is something that's possible?