how to add php code in phpbb template?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • deleteduser
    Confirmed User
    • Sep 2001
    • 2218

    #1

    how to add php code in phpbb template?

    how do i add php code in my phpbb theme template?

    {php}

    {/php}

    doesnt work...
    ICQ #58981463
    Promote my PornAccess Site: 2Chicks1Dick
  • deleteduser
    Confirmed User
    • Sep 2001
    • 2218

    #2
    BUMP! 8char
    ICQ #58981463
    Promote my PornAccess Site: 2Chicks1Dick

    Comment

    • EDepth
      Confirmed User
      • Nov 2005
      • 510

      #3
      add the following in includes/page_header.php near the top
      PHP Code:
      ob_start(); 
      include("path to php file"); 
      $myvariable = ob_get_contents(); 
      ob_end_clean(); 
      
      In the same file at the end of template->assignvars list (around line 420 or so) add:
      PHP Code:
      "MYVARIABLE" => $myvariable 
      
      In your template file add the following where you want your code:
      PHP Code:
      {MYVARIABLE} 
      
      ICQ: 275335837

      Comment

      Working...