K, So im trying to get Geshi working with punbb, ive been sitting here awhile, trying to get it working. But everything gets stripped out, by the time it gets "processed", my;
[autoit]MsgBox(0, "Hello", "World")[/autoit]
turns into
MsgBox(0, "Hello", "World")
When it should be;
Like: http://code.spartan-ware.com/include/test.php
Should be like that. But all the html is getting stripped out.
Any ideas?
<?
include "geshi.php";
$geshi = @new GeSHi("MsgBox(0, 'hello', 'world')", "autoit", getcwd());
$text = $geshi->parse_code();
echo $text;
?>
Theres the test.php example.