http://filmdatabase.awardspace.info
Iemand tips / feedback
Ik weet dat er nog niet echt veel tekst op staat, maar dat komt nog!
1.641 views
<?php
if($_SERVER['REMOTE_ADDR'] == '127.0.0.1') {
?>
<a href="/admin">Admin</a>
<?php
}
?>
<head>
<link rel="stylesheet" type="text/css" href="theme.css" />
</head>
<html>
<head>
<!--het komende stukje is van het type css-->
<style type="text/css">
body {
padding-left: 11em;
/* het lettertype */
font-family: Georgia, "Times New Roman",
Times, serif;
/* kleur van het lettertype is paars */
color: purple;
/* achtergrondkleur is goud*/
background-color: #FFD700 }
/* stukje voor het menu */
ul.navbar {
list-style-type: none;
padding: 0;
margin: 0;
position: absolute;
top: 2em;
left: 1em;
width: 9em }
h1 {
/* lettertype in het menu */
font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif }
/* stukje voor de vakjes in het menu */
ul.navbar li {
/* achtergrondkleur in het menu is wit */
background: white;
margin: 0.5em 0;
padding: 0.3em;
/* vierkantjes in het menu zijn zwart */
border-right: 1em solid black }
/* stukje voor de links*/
ul.navbar a {
/* geen text decoratie */
text-decoration: none }
/* voordat de link bezocht is */
a:link {
/* kleur paars */
color: purple }
/* als de link bezocht is */
a:visited {
/* kleur paars */
color: purple }
address {
margin-top: 1em;
padding-top: 1em;
border-top: thin dotted }
</style>
</head>
<body>
</body>
</html>
<?php
if($_SERVER['REMOTE_ADDR'] == '127.0.0.1' || $_SERVER['REMOTE_ADDR'] == 'IP 2') {
?>
<a href="/admin">Admin</a>
<?php
}
?>