Tengo el siguiente fragmento de código:
print start_form( -method => 'post', -action => '172.20.0.156/cgi-bin/Test.pl' ), "\n";
while ( ( $llave, $valor ) = each %hash ) {
print "$valor ", radio_group( -name => 'valor', -value => "$valor" ), br, "\n";
# lo imprime así, por ej para perro:
# <input type="radio" name="Dog" value="Dog" checked="checked" />Dog
}
print submit( -name => 'Action', -value => 'Mostrar' );
print end_form;
Como así también, tengo un ...