The URL to one of these forms is blah.php?page=send.
Code: Select all
<form action='blah.php?page=send' method='get'>
So once the form has submitted the URL should look something like. blah.php?page=send&ID=1&user=1&qty=1
But It comes out like this, blah.php?ID=1&user=1&qty=1.
I've tried PHP_SELF, SCRIPT_NAME, QUERY_STRING , REQUEST_URI but none of these seem to work.