Im attempting to modify a script to get it working with VB 3.5, and im almost there. I just have one problem, getting the actual post that someone makes to be ripped.
So this script has the following defined in order to get a posts content:
PHP Code:
while ($row2 = mysql_fetch_array($sql_result2)) {
$pagetext = $row2["pagetext"];
And this is what I was using to trigger its appearance:
PHP Code:
require_once("./includes/functions_bbcodeparse.php");
$bericht=parse_bbcode2($pagetext,"1","1","1","1","1");
So basically $bericht displays the parsed post content.
However, since includes/functions_bbcodeparse.php is no longer there, Im assuming that includes/class_bbcode.php takes its place.
However, that doesnt work either. So I can only assume that "pagetext" is no longer in 3.5 or its been renamed. Also is parse_bbcode2 still around??
Cmon, this lack of support is terrible. You guys change almost everything and half my stuff breaks!