I'm learning as I go in PHP with a game I'm working on and I'm trying to add profile signatures.. To figure this out I just started copy & pasting some stuff from the pre-made Forum and I've come somewhat close but this is the problem.. This is what is used in the forum: {$edittext}<br /> (I'm not sure but I think this has something to do with it) -------------------<br /> {$memb['forums_signature']} When I put that in for where I'm trying to get it into the user profile, it says "No Signature" and this is why: if(!$memb['forums_signature']) { $memb['forums_signature']="No Signature"; } else {$memb['forums_signature']=$bbc->bbcode_parse($memb['forums_signature']); } $r['fp_text']=$bbc->bbcode_parse($r['fp_text']); Now.. I really feel like an idiot but my guess to this would be there is supposed to be some kind of fetch command or something that would need to get the proper user ID's Forum Signature, so since it doesn't know where to get it from it doesn't give one at all. After this I tried changing it all up a bit, I used this: {$edittext}<br /> -------------------<br /> {$r['forums_signature']}</td><br /> After trying that it gives me the signature links and everything but with BB Code disabled. I know this is a stupid PHP-noob question but I feel like it should be a really simple fix I'm just too stupid to figure it out. Any ideas would be much appreciated and I wouldn't mind giving someone 5 bucks through Paypal to help me out Haha, not much but I don't have a huge budget right now and feel this should be an easy fix.. Thanks guys.
note: when you see "->" meaning there is a class integrated.. you cant just copy and paste the code without the class in it.. find the main class and functions called in your syntaxes first.
Hello Reefer88, The forum signature codes needs to be parsed from bbcode_parse method as per your posting for BB codes. eg: $bbc->bbcode_parse($memb['forums_signature']); This I am assuming from your post. Regrads, Gonzo