-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaside.php
More file actions
44 lines (35 loc) · 1.13 KB
/
Copy pathaside.php
File metadata and controls
44 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
$arrayMenuLeft = array("", "Главная",
"Инструкции",
"Авторизация",
"Контроллинг",
"Процессинг",
"Тех. поддержка");
$arrayMenuLeftLink = array("", "index.php",
"instructions.php",
"auth.php",
"controlling.php",
"processing.php",
"tech.support.php");
echo "<aside>";
echo "<ul>";
for ($i=1; $i < count($arrayMenuLeft); $i++) {
if ($i == $activeMenu) {
echo "<p>" . $arrayMenuLeft[$i] . "</p>";
} else {
echo "<li><a href=\"" . $arrayMenuLeftLink[$i] . "\">" . $arrayMenuLeft[$i] . "</a></li>";
}
}
echo "</ul>";
if (isset($_COOKIE["color"])) {
echo "<FORM ACTION=\"index.php\" METHOD=\"POST\">";
echo "<INPUT TYPE=\"hidden\" NAME=\"color\" VALUE=\"" . $_COOKIE["color"] . "\">";
if (isset($_COOKIE["color_fix"])) {
echo "<p style=\"margin:5px;\"><INPUT TYPE=\"submit\" VALUE=\" Случайный цвет ... \"></p>";
} else {
echo "<p style=\"margin:5px;\"><INPUT TYPE=\"submit\" VALUE=\" Зафиксировать цвет! \"></p>";
}
echo "</FORM>";
}
echo "</aside>";
?>