I typed that from my iPhone so I couldn't really check what I really had.
I don't need every field from that table, I only need the m_Inventory field.
I can successfully get the value of that field, but it does not display the FULL string which is stored in the table, only a part of it.
So basically something like this is stored in m_Inventory:
Code:
0,1242,0,0,0,02502,5025,205,02,562501,0,0,120,0,0,0,0/1,24262,24256,21
,36735,46,236,360,30,60,0,0,0,0,0,0,0/2,0252,62,36,7490,0,0,,,0,0,0,0
,740,0/9,0,0,36,306,163,7340,0,0,0,0,0,,0,0,0,,0/$
But when I retrieve it from the DB using PHP it only displays several characters from the full string, so something like this:
Code:
0,1242,0,0,0,02502,5025,205,02,562501,0,0,120,0,0,0,0/1,24262,24256,21,36735
,46,236,360,30,60,0,0,0,0,0,0,0/2,0252,62,36,7490,0
It does show the correct string for the correct player, but not everything 
It only returns 255 characters of the full string, is there any way to go around this limit?