sorry i dont know how to help with that. since i dont even know how to include php correctly in a module and have that show up.
but since you know that would you be willing to look into my php script that i would like to include in a module and help me getting it to show up?
by the way did you try:
Code:
eval('$home[$mods[\'modid\']][\'content\'] = "' . fetch_template('your_template_name_here') . '";');
or more completed.
Code:
foreach ($modules AS $omods)
{
if ($omods['identifier'] == 'buddylist' AND in_array($omods['modid'], explode(',', $pages['modules'])))
{
$showbuddies = true;
$buddyid = $omods['modid'];
}
if ($omods['identifier'] == 'onlineusers' AND in_array($omods['modid'], explode(',', $pages['modules'])))
{
$showonline = true;
$onlineid = $omods['modid'];
}
}
sorry i dont really know any php but that is what i've come across as help measure.