Forum Moderators: coopster
If, as it looks, you are authorizing a valid user, why not just use
session_register("user");
session_register("pass");
Or, you might consider assigning an array to pass
$my_var = $_POST;
<a href='http://www.domain.com/form.php?user=$my_var'>here</a>
Hope this is of help
WBF