tengo un formulario con un grupo de radio buttons, en el cual envio su valor por post, pero si dos radiobuttons tienen el mismo valor, ¿de que manera podria identificar cual es cual cuando recibo los datos en php?
Código HTML:
Ver original
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <form name="radios" method="post" action="radios2.php"> <table width="200"> <tr> <input type="radio" name="screen" value="1" id="screen_0" /> </tr> <tr> <input type="radio" name="screen" value="3" id="screen_1" /> </tr> <tr> <input type="radio" name="screen" value="3" id="screen_2" /> </tr> <tr> <input type="radio" name="screen" value="4" id="screen_3" /> </tr> <tr> <input type="radio" name="screen" value="5" id="screen_4" /> </tr> <tr> <input type="submit" name="boton" id="boton" value="Enviar" /> </tr> </table> </form> </body> </html>