MyBB Community Forums

Full Version: how to include files in header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to include a php file in the header template how should i do it
try This..


ob_start();
include("/namefile.php");
$news = ob_get_clean(); 
(2015-11-02, 04:34 PM)Khankharor Wrote: [ -> ]try This..


ob_start();
include("/namefile.php");
$news = ob_get_clean(); 

what is ob_start
By default you can't integrate php functions into theme templates.
You'll need a plugin for this.