Link color en php
Publicado por Joseba (56 intervenciones) el 08/12/2018 14:20:26
Aupa , despues de consegir https://www.lawebdelprogramador.com/foros/JavaScript/1677563-Javascript-Code-no-me-funciona.html#last last el cambio de color con Javascript , gracias xve , intento hacerlo en PHP , pero sin resultados , he intentado con este code ;
pero no tiene ningun efecto en el color del link...
aqui todo el code como lo tengo;
Mi conocimiento sobre PHP es de principiante... , me podria algien porfavor ayudarme con este problema... , gracias !
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
<?php
function mein_link()
{
$hallo = link_wechsel;
foreach ( $hallo as $love)
{
if ($love == $hallo)
{
echo $love;
}
else {
echo $hallo;
}
}
}
?>
pero no tiene ningun efecto en el color del link...
aqui todo el code como lo tengo;
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
header("Content-Type: text/html; Charset=utf-8");
mb_internal_encoding('UTF-8');
date_default_timezone_set('UTC');
error_reporting(E_ALL);
?>
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>beispiel-2</title>
</head>
<style>
.link_wechsel ul {
list-style-type: none;
margin-left: 340px;
}
.link_wechsel li {
display: inline;
}
.link_wechsel a {
display: inline;
text-decoration: none;
border: 1px solid gray;
background-color: #FE2E64;
color: black;
padding: 8px;
opacity: 0.5;
font-family: Times New Roman;
}
.link_wechsel a:hover {
background-color: #9f9e9e;
}
.link_wechsel a.love { background-color:green; }
</style>
<body>
<h3>Page 2</h3>
<nav class="link_wechsel">
<h2 class="visually-hidden">Page navigation</h2>
<ul>
<li><a href="Beispiel-1.php">1</a></li>
<li><a href="Beispiel-2.php">2</a></li>
</ul>
</nav>
<?php
function mein_link()
{
$hallo = link_wechsel;
foreach ( $hallo as $love)
{
if ($love == $hallo)
{
echo $love;
}
else {
echo $hallo;
}
}
}
?>
</body>
</html>
Mi conocimiento sobre PHP es de principiante... , me podria algien porfavor ayudarme con este problema... , gracias !
Valora esta pregunta
0