phpmybb

How to pass string from PHP page to myBB template / style?


I have a string on my PHP page called $psmoney that contains the value "9"- How do I call the string from inside my myBB template page in Admin CP>Templates & Style so it displays "9" on my page?

I have tried '$psmoney' but that returns empty ''


Solution

  • Maybe this can help you

    Put your code

    $psmoney = "9";
    

    in index.php, put it before

    $plugins->run_hooks('index_end');
    

    and then you can call

    {$psmoney}
    

    from your index templates