Tylko ze index.php wygl±da tak:
Kod
<?
/*****************************************************/
/* jPORTAL - internetowy system portalowy */
/*****************************************************/
/* autor: Pawel 'jaco' Jaczewski */
/* email: info@websys.pl */
/*****************************************************/
include('config.php');
include('module/news.inc.php');
#=====================================================#
function site_main() {
global $topic, $news_limit;
main_title_open();
echo 'Witamy!';
main_title_close();
main_text_open();
# text powitalny teraz w pliku index.txt
# oczywiscie mozna usunac ten fragment i
# umiescic wstep jak w poprzednich wersjach.
$index = file('index.txt');
$index = join('', $index);
$index = strtr($index, 'ˇ¦¬±¶Ľ', '·¦¬±¶Ą');
echo $index;
main_text_close();
list_news(1, $topic, $news_limit);
echo '[<b><a href="news.php?news=old">archiwum newsów</a></b> |
<b><a href="news.php?news=add">dodaj news</a></b>]</div>';
echo '
';
}
#=====================================================#
$site_title = 'witamy!';
$meta_info = '';
include("theme/$theme/index.php");
?>