forked from 0kan87/gece-gunduz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
56 lines (53 loc) · 2.04 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
h1 {color:white; font-family: tahoma; text-align:center;}
</style>
<?php
if("06:00"< date("H:i") && date("H:i")<"12:00"){
echo "<style type='text/css'>body {background: #3e3e3e url('img/sabah.jpg')
no-repeat fixed center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}</style>"; // SABAH
}elseif("12:00"<date("H:i")&& date("H:i")<"18:00"){
echo "<style type='text/css'>body {background: #3e3e3e url('img/ikindi.jpg')
no-repeat fixed center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}</style>"; // ÖĞLEDEN SONRA İKİNDİ
}elseif("18:00"<date("H:i")&& date("H:i")<"24:00"){
echo "<style type='text/css'>body {background: #3e3e3e url('img/aksam.jpg')
no-repeat fixed center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}</style>"; // AKŞAM
}else{
echo "<style type='text/css'>body {background: #3e3e3e url('img/gece.jpg')
no-repeat fixed center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}</style>"; // GECE
}
?>
</head>
<body>
<?php
if("06:00"< date("H:i") && date("H:i")<"12:00"){
echo "<h1>Şuan Saat 06:00 ile 12:00 arası olduğundan Sabah olarak kabul ediyorum ve bu resmi gösteriyorum.</h1>"; // SABAH
}elseif("12:00"<date("H:i")&& date("H:i")<"18:00"){
echo "<h1>Şuan Saat 12:00 ile 18:00 arası olduğundan İkindi olarak kabul ediyorum ve bu resmi gösteriyorum.</h1>"; // ÖĞLEDEN SONRA İKİNDİ
}elseif("18:00"<date("H:i")&& date("H:i")<"24:00"){
echo "<h1>Şuan Saat 18:00 ile 24:00 arası olduğundan Akşam olarak kabul ediyorum ve bu resmi gösteriyorum.</h1>"; // AKŞAM
}else{
echo "<h1>Şuan Saat 24:00'den sonrası olduğundan Gece olarak kabul ediyorum ve bu resmi gösteriyorum.</h1>"; // GECE
}
?>
</body>
</html>