Hola compañeros, llevo 2 días intentando ver los datos concretos de un combo .. este es el código de pruebas, necesito que me pase tanto el valor como el nombre de la etiqueta ¿se puede hacer de alguna manera?... gracias por adelantado.
<?php
print_r($_POST);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form method="POST" action="formulario.php">
<select name="elselect">
<option value="valor1">etiqueta 1</option>
<option value="valor2">etiqueta 2</option>
</select>
<input type="submit" value="Enviar" name="enviar">
</form>
</body>
</html>