Quote:
Originally Posted by zushiba
Is it possible to view a single result?
I am creating a widgit in PHP that shows the users submitted forms with an easy "Edit" button but I'm stuck on how to just show them their result as it goes in to a database not a forum.
So I'd like to just show them the resulted form information they entered for that single entry.\
EDIT: Oh I suppose I could just pull the Output field. Though then I need to find a way to show the output of the BBCode from the database in a php widgit.
|
To parse it, use the following on $output:
PHP Code:
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list(), true);
$output = $bbcode_parser->parse($output);