Quote:
here is what I am trying to include:
quote:
--------------------------------------------------------------------------------
<?php
if (eregi("block-LastPosts",$PHP_SELF)) {
Header("Location: index.php");
die();
}
$content = "<? include('forum/admin/online.php'); ?>";
?>
|
don't use a seperate block.... just include
Code:
<? include('forum/admin/online.php'); ?>
as text in a textblock (when adding a new custom block). you don't have to use modules/blocks...