Is it valid to have two input elements with the same name?
        Posted  
        
            by Rohan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Rohan
        
        
        
        Published on 2010-05-25T17:13:09Z
        Indexed on 
            2010/05/25
            18:11 UTC
        
        
        Read the original article
        Hit count: 209
        
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?
© Stack Overflow or respective owner