tengo este código
Código PHP:
Ver original$tipo_habi=$_POST['habitaciones'];
$consulta="SELECT * FROM usuarios, habitaciones where (usuario='".$_SESSION['usuario']."' and usuarios.id_habitaciones = habitaciones.id and ".$tipo_habi." = ".$tipo_habi.")";
$result_conexion=Conectar($consulta);
echo "hola"; //hasta aquí se ejecuta
{
echo $fila[$tipo_habi]; //no imprime en pantalla la consulta
}
y no me devuelve el echo que hay en el while, no entiendo por qué si alguien me puede ayudar. puedo proporcionar todo el código que necesiten. gracias!!