Люди добые, подскажите, пожалуйста, правильный ли путь?
Вопрос: Есть страница, на ней есть меню и слово, которое должно меняться, в зависимости от выбранного пункта меню.
- пункт 1
+ пункт 2 пункт2
- пункт 3
+ пункт 1
- пункт 2 пункт1
- пункт 3
Пытаюсь сделать на php:
/* меню:*/
<?php
$city = array();
$city[1] = "Москва";
$city[2] = "Санкт-Петербург";
$city[3] = "Смоленск";
$city[4] = "Орел";
$city[5] = "Липецк";
$city[6] = "Рославль";
$i = 0;
for ($i=1; $i <7; $i++)
{
$t = 0;
$t = $city[$i];
}
?>
<a href="partners.php?" class="catalog">- <?php print("$city[1]"); ?></a>
<a href="partners.php?" class="catalog">- <?php print("$city[2]");?></a>
<a href="partners.php?" class="catalog">- <?php print("$city[3]");?></a>
<a href="partners.php?" class="catalog">- <?php print("$city[4]");?></a>
<a href="partners.php?" class="catalog"> - <?php print("$city[5]");?></a>
<a href="partners.php?" class="catalog">- <?php print("$city[6]");?></a>
/*слово*/
<p style="margin-left:5; margin-top:15;color:#000000; font-size: 12px; text-decoration: underline;"> <b>
<!-- сюда надо вставить слово = пункту меню -->
<?php
echo("$city"); /*это не помогает, так как выводит Array*/
?>
</b></p>