st_ioann 0 Опубликовано: 25 августа 2007 Рассказать Опубликовано: 25 августа 2007 Добрый вечер всем, имеется скрипт <?php $host="index.php"; if ($_SERVER['REQUEST_URI']) $host = $_SERVER['REQUEST_URI']; $rest = substr($host,1,10); if(!isset($rest)) {$rest="index.php";} function menu_css( ) { ?> <style type="text/css"> a {text-decoration:none} .hover_menu a{ background: url('buttn.gif'); margin:0px; padding:0px; display: block; width: 215px; height: 23px; background-position: 0px -23px; font-family: ms sans Serif; font-size: 14px; font-weight: 600; text-decoration:none; color: #ff0;} .inactive_menu a { background: url('buttn.gif'); margin:0px; padding:0px; display: block; width: 215px; height: 23px; font-family: ms sans Serif; font-size: 14px; font-weight: 600; text-decoration:none; color: #000; } .active_menu a { background: url('buttn.gif') #fff; margin:0px; padding:0px; display: block; width: 215px; height: 23px; background-position: 0px -23px; font-family: ms sans Serif; font-size: 14px; font-weight: 600; text-decoration:none; color: #ff0; } </style> <?php } function menu_item( $id, $title, $current ) { $class = "inactive_menu"; if ( $current == $id ) $class = "active_menu"; ?> <tr><td class="<?php echo($class); ?>" onmouseover="this.className='hover_menu'" onmouseout="this.className='<?php echo($class); ?>'"> <a href="<?php echo( $id ); ?>" class="<?php echo($class); ?>"> <font style="padding-left:15px; margin-top:4px"><?php echo( $title ); ?></font> </a> </td></tr> <?php } function page_menu($rest) { ?> <table width="20%" cellspaceing="0" cellpadding="2"> <tr> <td><?php menu_item( 'index.php', 'Home', $rest ); ?></td> <td><?php menu_item( 'about.html', 'about', $rest ); ?></td> <td><?php menu_item( 'world', 'world', $rest ); ?></td> <td><?php menu_item( 'links', 'Links', $rest ); ?></td> <td><?php menu_item( 'credits', 'Credits', $rest ); ?></td> </tr> </table> <?php } $mn_css = 'menu_css'; $pg_menu = 'page_menu'; $tpl->load_template('menu.tpl'); $tpl->set('{mn_css}', menu_css()); $tpl->set('{pg_menu}', page_menu($rest)); $tpl->compile('content'); $tpl->clear(); //echo $rest; ?> При попытке встроить его как модуль, он тут же выводится на самом верху сайта, подскажите, может что со скриптом не так? или я неправильно делаю ему "include"?!? Заранее спасибо. Цитата Ссылка на сообщение Поделиться на других сайтах
Рекомендованные сообщения
Присоединяйтесь к обсуждению
Вы можете опубликовать сообщение сейчас, а зарегистрироваться позже. Если у вас есть аккаунт, войдите в него для написания от своего имени.