i.e.:
<form 1>
<input type="hidden" name="url" value="1">
</form 1>
and
<form 2>
<input type="hidden" name="url" value="2">
</form 2>
Is this allowed and valid?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it is valid
This is Good
This is also fine and will generally be interpreted as an array of values, e.g.
{url: [1, 2]}, depending on what your server does. In a URL encoding, it will look likeurl=1&url=2.