-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
25 lines (23 loc) · 970 Bytes
/
footer.php
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
<div id="footer"><p>Credits:
<?php
$contributors = array(
'Aimilios Tsouvelekakis' => '[email protected]',
'Nikos Androulakis' => '[email protected]',
'Fay Kazakou' => '[email protected]'
);
shuffle( $contributors );
foreach ( $contributors as $contributor => $url ) {
if ($url == '[email protected]'){
echo '<a href="mailto:' . $url . '">' . 'Aimilios Tsouvelekakis </a>';
}
else if ($url == '[email protected]'){
echo '<a href="mailto:' . $url . '">' . 'Nikos Androulakis </a>';
}
else {
echo '<a href="mailto:' . $url . '">' . 'Fay Kazakou </a>';
}
}
?>
</div><!-- End of footer-->
</body> <!--end of title and menu-->
</html>