|
as GigoloShawn said above, you are using the variable $results when it is $result heh.
This line should produce what you want:
echo unserialize(base64_decode($result[0][0]));
(feel free to use the field name instead of that second 0 though, to make your code easier to read):
echo unserialize(base64_decode($result[0]['m_addtn']));
__________________
Skype variuscr - Email varius AT gmail
|