Hi,
I'm working on a form and I'm passing variables using the POST method. My form "action" contains some URL parameters.
Once the form is parsed, I cannot check the value of both "name" and "time" params.
I know I could pass both variables through a input type hidden field but I would wondering why I can't get the values using the POST method ?
Thanks in advance
I'm working on a form and I'm passing variables using the POST method. My form "action" contains some URL parameters.
Code:
<form action="index.pl?name=tek&time=tips" method="post">
<input type="text" name="some_name" value="some_value">
<input type="submit" value="submit" name="submit"
</form>
Once the form is parsed, I cannot check the value of both "name" and "time" params.
I know I could pass both variables through a input type hidden field but I would wondering why I can't get the values using the POST method ?
Thanks in advance