Posted by Bostjan Skufca @ domenca.com on 10/03/57 11:05
Hello,
If I create form like this
<form name="form" action="##_URI_ROOT##/entity/edit.php?a=b" method="post">
<input type="hidden" name="action" value="modify" />
....
both arrays contain appropriate variables when submitted:
::: $_GET :::
Array
(
[a] => b
)
::: $_POST :::
Array
(
[action] => modify
...
)
Now what I am interested in is if this is valid behaviour regarding HTTP
specification and if other platforms support this interference of GET and
POST variables in request?
Thank your for your answers,
Bostjan
[Back to original message]
|