When using $PHP_SELF in the action part of a form it only contains the name of the page that is being submitted and doesnt include any parameters that I have set on the end of the URL
For example:
If I supply the following url:
index.php?somenamehere=123456
then $PHP_SELF only contains the /index.php part and not the ?somenamehere=123456. How can I write my scripts so that the extra parameters are submitted as well.
(btw, due to the way ive written my script i cant just put a hidden field in the form which contains the parameters and have that submit them)
Thanks.
Ash.