I used the stripslashes and the error_reporting. No errors to report. Here's the php code I am using.
PHP Code:
$find_monster = $inferno->db->query_first("SELECT m_equipment FROM inferno_monster where m_enc_loc='{$inferno->user['current_place']}'");
$find_equipment2 = unserialize(stripslashes($find_monster['m_equipment']));
I'm using the following in a template to see the data. I'm guessing these are wrong?
HTML Code:
{$find_equipment2}<BR>
{$find_equipment2[1]}
Quote:
Originally Posted by Opserty
$full_equipment[5] = 's:1:"8"';
You have changed part of the array there, so its changed fully. Theres no need to rebuild it using array() again. You can just implode it as you have done on the next line.
|
Ahhhh! Thanks for that.