I have this code now:
[Code moderated as per the Forum Rules. Please use the pastebin]
I get the following error message:
Catchable fatal error: Object of class stdClass could not be converted to string
I tried the following, the try you see above is the last one, before that I tried:
echo '<li><strong>' . htmlspecialchars((string)$tag) . '</strong>: ' . getWikiIntroParagraph( $tag->name );
and
echo '<li><strong>' . htmlentites((string)$tag) . '</strong>: ' . getWikiIntroParagraph( $tag->name );
Don't know what happened. Even if I put
echo $tag;
before the line, I got no result and the same error message. Any ideas?