om de 2 weken een ander spel laten zien
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$date = date("Ymd");
// Y staat voor jaar vb. 1999 m voor maand vb. 11 d idem als m vb. 20040511
if ($date >= 20040525)
and if ($date <= 20040609)
include('./include/vrachtwagenspel.php');
else
if ($date >= 20040609)
and if ($date <= 20040623)
include('./include/telspel.php');
else
if ($date >= 20040623)
and if ($date <= 20040707)
include('./include/schuifspel.php');
else
if ($date >= 20040707)
and if ($date <= 20040721)
include('./include/kwaliteiten.php');
else
if ($date >= 20040721)
and if ($date <= 20040703)
include('./include/hpbspel.php');
?>
$date = date("Ymd");
// Y staat voor jaar vb. 1999 m voor maand vb. 11 d idem als m vb. 20040511
if ($date >= 20040525)
and if ($date <= 20040609)
include('./include/vrachtwagenspel.php');
else
if ($date >= 20040609)
and if ($date <= 20040623)
include('./include/telspel.php');
else
if ($date >= 20040623)
and if ($date <= 20040707)
include('./include/schuifspel.php');
else
if ($date >= 20040707)
and if ($date <= 20040721)
include('./include/kwaliteiten.php');
else
if ($date >= 20040721)
and if ($date <= 20040703)
include('./include/hpbspel.php');
?>
maar nu werkt het niet wat is er verkeerd aan? en hoe krijg ik het dan wel aan het werken.
alvast bedankt
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
$date = date("Ymd");
// Y staat voor jaar vb. 1999 m voor maand vb. 11 d idem als m vb. 20040511
if ($date >= 20040525 && $date <= 20040609)
include('./include/vrachtwagenspel.php');
else
if ($date >= 20040609 && $date <= 20040623)
include('./include/telspel.php');
else
if ($date >= 20040623 && $date <= 20040707)
include('./include/schuifspel.php');
else
if ($date >= 20040707 && $date <= 20040721)
include('./include/kwaliteiten.php');
else
if ($date >= 20040721 && $date <= 20040803)
include('./include/hpbspel.php');
?>
$date = date("Ymd");
// Y staat voor jaar vb. 1999 m voor maand vb. 11 d idem als m vb. 20040511
if ($date >= 20040525 && $date <= 20040609)
include('./include/vrachtwagenspel.php');
else
if ($date >= 20040609 && $date <= 20040623)
include('./include/telspel.php');
else
if ($date >= 20040623 && $date <= 20040707)
include('./include/schuifspel.php');
else
if ($date >= 20040707 && $date <= 20040721)
include('./include/kwaliteiten.php');
else
if ($date >= 20040721 && $date <= 20040803)
include('./include/hpbspel.php');
?>
oh hij werkt al, die hier bove is al goed :S haha