Quote:
Originally Posted by Varius
is $results there the array though (recordset returned)? If so that's your error, you need to unserialize(base64-decode()) on the actual string (data of that one field), not the whole returned result (recordset).
if you want paste the few lines of code you have above that where it shows the fetching of the row, etc...
|
i just tried the code below, I'm getting a blank page this time around. there is two array 0 and m_addtn
$res = mysql_query("SELECT m_addtn FROM s_viz WHERE m_id = '39'");
$result = mysql_fetch_array($res);
$decode = unserialize(base64_decode($results['m_addtn']));
print_r($decode);