Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/06/2008, 22:34
Chuecko
 
Fecha de Ingreso: junio-2008
Mensajes: 119
Antigüedad: 15 años, 10 meses
Puntos: 1
Respuesta: Obtener variables de un select

Código:
echo "Legajo: <input name='legajo'><br><br>";
echo "Id Carrera: <select name='$row[1]'>";
while ($row = pg_fetch_row($result)) {
  echo "<option>$row[0]</option>";
}
echo "</select><br><br>";
Código:
$idcarrera = $_POST['$row[1]'];
Asi estaria bien???no me anda asi