ip-adressen-van-je-website
Gesponsorde koppelingen
PHP script bestanden
DEZE CODE MOET JE IN JE index.php ZETTEN!
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
<?
// defineer bestand waarin ip's worden opgeslagen
// doe dit bestand: chmod 777
$file = "cfgs/ip.dat";
// pak het ip adres
$addr = $_SERVER['REMOTE_ADDR'];
// defineer het bestand
$filename = file($file);
// check voor aanwezigheid ip adres
$count = count($filename);
$ip = "";
for($i = 0; $i < $count; $i++)
{
if(eregi($addr,$filename[$i]))
{
$ip = "exists";
}
}
// defineer hoeveel ip adressen in totaal
$total = 20;
// check of ip bestaat
if(!$ip)
{
// defineer het bestand
$filename = file($file);
// open het bestand
$openfile = fopen($file,"w");
fputs($openfile,"$addr<br>\n");
// hou bij hoeveel er nu in staan
for($i = 0; $i < ($total-1); $i++)
fputs($openfile,$filename[$i]);
// sluit het bestand
fclose($openfile);
}
?>
// defineer bestand waarin ip's worden opgeslagen
// doe dit bestand: chmod 777
$file = "cfgs/ip.dat";
// pak het ip adres
$addr = $_SERVER['REMOTE_ADDR'];
// defineer het bestand
$filename = file($file);
// check voor aanwezigheid ip adres
$count = count($filename);
$ip = "";
for($i = 0; $i < $count; $i++)
{
if(eregi($addr,$filename[$i]))
{
$ip = "exists";
}
}
// defineer hoeveel ip adressen in totaal
$total = 20;
// check of ip bestaat
if(!$ip)
{
// defineer het bestand
$filename = file($file);
// open het bestand
$openfile = fopen($file,"w");
fputs($openfile,"$addr<br>\n");
// hou bij hoeveel er nu in staan
for($i = 0; $i < ($total-1); $i++)
fputs($openfile,$filename[$i]);
// sluit het bestand
fclose($openfile);
}
?>
DEZE CODE KUN JE ERGENS ANDERS IN ZETTEN, OF GEWOON ALS ipadressen.php OFZO