ok so now I get the variable on the next page
example
<?
// get variable from form
$_GET['name'];
?>
How do I now put this back in the url?
Before Register Globals was switched off I would do this
<a href="TheNextPage.php?name=<? echo $name; ?>">
But now I cannot do this, what do I use instead. This is drivin me crazy
Thank you in advance