I have exactly the same problem. Can't figure out why!!
Cheers,
Ed
Nick wrote:
I have a problem with posting variables to PHP scripts. Instead I have to use the GET command with forms and had to make up this for each of my scripts:
while(list($key, $value) = each($HTTP_GET_VARS))
{
if ($key=="id") $id=$value;
if ($key=="rs") $rs=$value;
}
Does anyone know why this is?