Cita:
Iniciado por jotaincubus coloca esto en tu codigo:
Código PHP:
$clave = $_POST['rec'];
$conexion = mysql_connect("localhost", "root", "");
mysql_select_db("bf2", $conexion);
$consulta = "select recinto_nombre from recinto where Recinto_cod = '$clave' ";
$ejecutar = mysql_query($consulta, $conexion);
while ($actual = mysql_fetch_array($ejecutar)){
echo $actual['recinto_nombre']."<br/>";
}
graciaas coloque el codigo ,pero me guardaba el valor del codigo , no del nombre ..
despues de un rato y una que otra vuelta por ay encontre la solucion al problema , basandome en la ayuda que me prestaste ...
a modo de ejemplo , para los que tengan la misma problema dejo el codigo correspondiente :
Código PHP:
$clave = $_POST['rec'];
$conexion = mysql_connect("localhost", "root", "");
mysql_select_db("bf2", $conexion);
$consulta = "select recinto_nombre from recinto where Recinto_cod = '$clave' ";
$ejecutar = mysql_query($consulta, $conexion);
while ($actual = mysql_fetch_array($ejecutar)){
$actualTabla=$actual[0];
}
gracias por la ayuda!!! ...