With PHPBB is it possible to use PHP scripts with custom BBCodes?
An example use would be if i wanted to grab today's weather with Curl and then display it on a forum post as text data.
I have tried to add php code directly in the BBCode but it does not work, i have also tried to return an echo from JS but it didn't seem to work either.
I also tried this but it did not work:
<!-- PHP --><?php echo 'hello'; ?><!-- ENDPHP -->
How would i run some PHP code in a custom BBCode?