|
02.05.2007, 21:53
А ты не мог бы сказать где именно а то я не знаю языка php, знаю только html
Вот текст файла, что изменить,чтобы отображалась на всех страницах?
PHP код:
themefooter() {
global $index, $foot1, $foot2, $foot3, $copyright, $totaltime, $ThemeSel;
if ($index == 1) {
$tmpl_file = "themes/$ThemeSel/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
$footer_message = "$foot1$foot2$foot3$copyright<br>$totaltime";
$tmpl_file = "themes/$ThemeSel/footer.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
а вот ссылка на сайт можешь глянуть как он игнорируется http://www.gwfru.jino-net.ru
|
|