Hi Zzz
This isn't how it works. The action is just "move.php". If you want to append query strings to the URL, you have to use GET, not POST.
Stick with POST - it's fine. The file move.php needs to pick up the form values thus:
$list1=$_POST["list1"];
$list2=$_POST["list2"];
Your form is passing empty variables via GET to a form validation which is expecting POST. The parameter name="list1" in your form is the value that is passed to move.php, which is why you pick it up in move.php.
Is that clear enough?
Norm