Selección de valores
Hola a todos, tengo el siguiente código:
$CmbProfesion = "<select multiple size='5' name='TxtCodigoProfesion'>\n";
while ($Prof = mysql_fetch_object($Result)) {
if ($Prof->Nombre_Profesion == $TxtNbProfesion) {
$CmbProfesion .= "<option value='$Prof->Codigo_Profesion' selected >
$Prof->Nombre_Profesion </option>\n";
}else{
$CmbProfesion .= "<option value='$Prof->Codigo_Profesion' >
$Prof->Nombre_Profesion </option>\n";
}
}
$CmbProfesion .= "</select>\n";
La pregunta es como capturo los valores que selecciono.
De ante mano muchas gracias
$CmbProfesion = "<select multiple size='5' name='TxtCodigoProfesion'>\n";
while ($Prof = mysql_fetch_object($Result)) {
if ($Prof->Nombre_Profesion == $TxtNbProfesion) {
$CmbProfesion .= "<option value='$Prof->Codigo_Profesion' selected >
$Prof->Nombre_Profesion </option>\n";
}else{
$CmbProfesion .= "<option value='$Prof->Codigo_Profesion' >
$Prof->Nombre_Profesion </option>\n";
}
}
$CmbProfesion .= "</select>\n";
La pregunta es como capturo los valores que selecciono.
De ante mano muchas gracias
1 respuesta
Respuesta de ppb34
1