I'd like to have a BBCODE in our forums called 'TMX'
As Option there's a String used, here TMU for example
So I created an own vBcode with the following Things:
Tag: TMX
Code:
PHP Code:
<? include ("http://forum.online-spielen.de/tmxinfo.php?id={param}|{option}"); ?>
Example: [TMX=TMU]856563[/TMX]
Use Option "YES"
If I call the URL in my browser everything is shown well. A table filled with the informations to display in a forums thread.
http://forum.online-spielen.de/tmxin...?id=856563|TMU
This php script to include is variable, so if i change the param or option there will be shown another result in the same table:
http://forum.online-spielen.de/tmxin...id=1047807|TMU
http://forum.online-spielen.de/tmxin...id=317244|TMNF
My problem is to include these table in the thread.
If I take a look at the sourcecode of the Thread there's the line
PHP Code:
<? include ("http://forum.online-spielen.de/tmxinfo.php?id=856563|TMU"); ?>
inside, so the {param} and the {option} works well.
But no table is shown instead of the include php code
Please help me, because i've no idea...