Well, it depends on the variables length how elegant it's gonna be, but it's quite possible to send them using GET.
First you need to rawurlencode() them, and then print them into a link:
rawurlencode($variable);
<a href="script.php?myvar=$variable">
knutm