<FORM METHOD=\"POST\" ACTION=\"URL_receiving.php3\">
<INPUT NAME=\"value1\" value=\"$value1\">
<INPUT NAME=\"value2\" value=\"$value2\">
Then in URL_receiving.php3
you can access the values directly like Tomasson's reply.
if(isset($value1))
//do something
if(isset($value2))
//do something
you can pass arrays too...
<INPUT NAME=\"value[0]\" VALUE=\"2\">
and access it using $value[0];
good luck
andre @ performance technologies