"$A$ reduces to $B$" means that there's a way to take an instance of $A$ and "easily" turn it into an instance of $B$, so that - if I solve that $B$-instance - I can "easily" turn the answer into a solution to the $A$ instance.
This means that if I had a way to solve $B$, I could "easily" turn it into a way to solve $A$; this is why, intuitively, $B$ is harder than $A$.
For a concrete example: say $A$ is the problem of determining whether a number is prime, and $B$ is the problem of factoring a number completely. Then I can reduce $A$ to $B$ as follows: take a number $n$, factor it completely, and then see if I got at least three factors.
If you try to reduce $B$ to $A$, though, you get stuck. Say you had a magic wand that could tell if a number was prime. How would you use this to factor $n$? Well, first you could tell that $n$ isn't prime - but what then? You still seem to need to search through a lot of numbers to find $n$'s factors (and indeed, it is conjectured that $B$ does not reduce to $A$!).
This should help you see why the problem being reduced is easier than the problem reduced to.
This means the answer to your second question is, "Basically nothing." The only information you can conclude is negative: if $A$ reduces to $B$ and $A$ is not solvable in polynomial time, then neither is $B$. Positive information transfer goes the other way, e.g. if $B$ is solvable in exponential time then so is $A$.