Try this
function get_page()
{
GLOBAL $PHP_SELF,$HTTP_GET_VARS;
$page=$PHP_SELF."?";
foreach ($HTTP_GET_VARS as $ind=>$val)
{
$page .="$ind=$val&";
}
//delete the last &
$page = substr($page,0,-1);
return urlencode($page);
}
$this_page=get_page();
echo "<a href=email.php?page=$this_page>email to my friend</a>";
I think it might be useful,at least you can improve according to your needs.
Good luck