sanda
Новичок
Дата регистрации:
29.11.2013 21:26:49
Сообщений: 12
<?php $uri = $_SERVER["REQUEST_URI"];;?>
<table id="topmenu">
<tr>
<td>
<a href="index.php" <?php if ($uri = "/index.php" {echo 'class="active"';}?>>
Главная
</a>
</td>
<td>
<a href="articles.php" <?php if ($uri = "/articles.php" {echo 'class="active"';}?>>
Статьи
</a>
</td>
<td>
<a href="pictures.php" <?php if ($uri = "/pictures.php" {echo 'class="active"';}?>>
Галерея
</a>
</td>
<td>
<a href="definition.php" <?php if ($uri = "/definition.php" {echo 'class="active"';}?>>
Словарь терминов
</a>
</td>
<td>
<a href="contacts.php" <?php if ($uri = "/contacts.php" {echo 'class="active"';}?>>
Контакты
</a>
</td>
<td>
<a href="comments.php" <?php if ($uri = "/comments.php" {echo 'class="active"';}?>>
Гостевая книга
</a>
</td>
<td>
<a href="map.php" <?php if ($uri = "/map.php" {echo 'class="active"';}?>>
Карта сайта
</a>
</td>
</tr>
</table>
везде class=active
объясните пожалуйста что делать