Any help would be great!
Why won't this work? The same script will work on an older version of php with register_globals set to on.
<html>
<head>
<title></title>
</head>
<body bgcolor="#FFFFFF">
<table width=90%>
<tr>
<td align="left" valign="top">
<font face="verdana, helvetica, arial" size=2 color="#000000">
<a href="test2.php?variable=test">TEST</a>
</font>
</td>
</tr>
</table>
</body>
</html>
----- and on test2.php, I have the following
<html>
<head>
<title></title>
</head>
<body bgcolor="#FFFFFF">
<table width=90%>
<tr>
<td align="left" valign="top">
<font face="verdana, helvetica, arial" size=2 color="#000000">
<?php
$variable = urldecode($variable);
echo "<b> $variable </b><br><br>";
?>
</font>
</td>
</tr>
</table>
</body>
</html>