PDA

View Full Version : External php in sidebar


PanterSi
02-13-2011, 01:45 PM
I want to do my own sidebar, to include external php file. Is it possible? To make sidebar from CP is not possible to include files...

FatalCure
02-15-2011, 12:35 PM
ob_start();
include("/index.php");
echo "<br />\n";
$output .= ob_get_contents();
ob_end_clean();

Thats what I use.

PanterSi
03-17-2011, 06:59 PM
Works, thx!