I need help with the PHP Function unserialize, I can't seem to get it to work correctly.
I tried several solutions found on this site, but none seem to get what I want or cause more errors.
I have taking my posts and serialize correctly and added them to the database just fine, but now I can't
get them to display correctly.
I have the following in my database field template_code:
title|s:15:"your page title";keywords|s:25:"meta,tag,keywords,go,here";description|s:30:"meta tag description goes here";
And what I am trying to get is:
$data['title'] = 'your page title';
$data['keywords'] = "meta, tag, keywords, go, here";
$data['description'] = "meta tag description goes here";
Can someone point me to a solution on PHPBuilder that will get me what I am looking for!
Thanks