They are basically the same
B - Brackets = P - Parentheses
O - Order = E - Exponents i.e. Powers
D - Division != M - Multiplication
M - Multiplication != D - Division
A - Addition = A - Addition
S - Subtraction = S - Subtraction
So we see the only difference is between the multiplication and division operators. Both are acronyms designed to be easy to remember but don't quite tell the full story. The central idea the two acronyms try to get across is that you should do multiplication and division before addition and subtraction.
Now there are some awkward cases like 6/2*3, 6*3/2 and 6/3/2. Neither rule works for all these case. The real rule is that when the operations are of the same precedence, (like * and / ) you do the operations from left to right. Hence 6/2*3 = (6/2) * 3 = 3 * 3 = 9 and 6 * 3 / 2 = (6 * 3) / 2 = 18 / 2 = 9 and 6/3/2 = (6/3)/2 = 2/2 = 1.
The same happens with + and -. So 6 - 2 - 3 = (6 - 2) - 3.
Also, check the P
EMDAS calculator online