Stats Signature Runescape
hij neemt altijd m'n totaal skill terwijl ik bv m'n prayer wil laten zien.
De skill prayer neemt hij wel maar de xp, rank of lvl niet daar neemt hij altijd de resultaten van m'n totaal.
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
putenv('GDFONTPATH=' . realpath('.'));
$imgname='baseimage.jpg';
$im = @imagecreatefromjpeg($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
$arrSkills = array(
"Prayer",
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var = $values['skill'];
$var1 = $values['exp'];
$color = imagecolorallocate($im, 0, 0, 0);
$font = 'arial.ttf';
imagettftext($im, 9, 9, 77, 28, $color, $font, $var);
imagettftext($im, 9, 9, 129, 54, $color, $font, $var1);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($img);
}
else
{
echo "Username does not exist";
}
?>
putenv('GDFONTPATH=' . realpath('.'));
$imgname='baseimage.jpg';
$im = @imagecreatefromjpeg($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
$arrSkills = array(
"Prayer",
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var = $values['skill'];
$var1 = $values['exp'];
$color = imagecolorallocate($im, 0, 0, 0);
$font = 'arial.ttf';
imagettftext($im, 9, 9, 77, 28, $color, $font, $var);
imagettftext($im, 9, 9, 129, 54, $color, $font, $var1);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($img);
}
else
{
echo "Username does not exist";
}
?>
Kan er iemand helpen ? alvast bedankt.
Je kan dan wel bijvoorbeeld van regel 66 t/m regel 72 maken:
Code (php)
Als ik het namelijk goed begrijp, maakt het script normaal gesproken een lijst met voor elke skill een afbeelding. Je geeft op deze manier aan dat die hier alleen de prayer moet hebben.
Notice: Undefined variable: var in /home/rsinfo/public_html/slash350/index.php on line 87
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
putenv('GDFONTPATH=' . realpath('.'));
$imgname='baseimage.jpg';
$im = @imagecreatefromjpeg($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
#VUL DEZE ARRAY COMPLEET IN MET ALLE STATS
$arrSkills = array(
"Prayer",
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var = $values['skill'];
$var1 = $values['exp'];
if($var == 'Prayer'){
$color = imagecolorallocate($im, 0, 0, 0);
$font = 'arial.ttf';
imagettftext($im, 9, 9, 77, 28, $color, $font, $var);
imagettftext($im, 9, 9, 129, 54, $color, $font, $var1);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($img);
}
}
else
{
echo "Username does not exist";
}
?>
putenv('GDFONTPATH=' . realpath('.'));
$imgname='baseimage.jpg';
$im = @imagecreatefromjpeg($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
#VUL DEZE ARRAY COMPLEET IN MET ALLE STATS
$arrSkills = array(
"Prayer",
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var = $values['skill'];
$var1 = $values['exp'];
if($var == 'Prayer'){
$color = imagecolorallocate($im, 0, 0, 0);
$font = 'arial.ttf';
imagettftext($im, 9, 9, 77, 28, $color, $font, $var);
imagettftext($im, 9, 9, 129, 54, $color, $font, $var1);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($img);
}
}
else
{
echo "Username does not exist";
}
?>
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
putenv('GDFONTPATH=' . realpath('.'));
$imgname='baseimage.jpg';
$im = @imagecreatefromjpeg($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
$arrSkills = array(
"Total",
"Attack",
"Defence",
"Strength",
"Hitpoints",
"Ranged",
"Prayer",
"Magic",
"Cooking",
"Woodcutting",
"Fletching",
"Fishing",
"Firemaking",
"Crafting",
"Smithing",
"Mining",
"Herblore",
"Agility",
"Thieving",
"Slayer",
"Farming",
"Runecraft",
"Hunter",
"Construction",
"Summoning"
,
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var = $values['skill'];
$var1 = $values['exp'];
if($var == 'Prayer'){
$color = imagecolorallocate($im, 0, 0, 0);
$font = 'arial.ttf';
imagettftext($im, 9, 9, 77, 28, $color, $font, $var);
imagettftext($im, 9, 9, 129, 54, $color, $font, $var1);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($img);
}
}
else
{
echo "Username does not exist";
}
?>
putenv('GDFONTPATH=' . realpath('.'));
$imgname='baseimage.jpg';
$im = @imagecreatefromjpeg($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
$arrSkills = array(
"Total",
"Attack",
"Defence",
"Strength",
"Hitpoints",
"Ranged",
"Prayer",
"Magic",
"Cooking",
"Woodcutting",
"Fletching",
"Fishing",
"Firemaking",
"Crafting",
"Smithing",
"Mining",
"Herblore",
"Agility",
"Thieving",
"Slayer",
"Farming",
"Runecraft",
"Hunter",
"Construction",
"Summoning"
,
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var = $values['skill'];
$var1 = $values['exp'];
if($var == 'Prayer'){
$color = imagecolorallocate($im, 0, 0, 0);
$font = 'arial.ttf';
imagettftext($im, 9, 9, 77, 28, $color, $font, $var);
imagettftext($im, 9, 9, 129, 54, $color, $font, $var1);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($img);
}
}
else
{
echo "Username does not exist";
}
?>
Gewijzigd op 01/01/1970 01:00:00 door slash
of wil je net als dat van www.leetscape.com ?
De TS wil die sig automatisch laten maken door PHP. Dat kan niet met Photoshop CS.
Douwe M schreef op 13.09.2008 10:40:
Hans;
De TS wil die sig automatisch laten maken door PHP. Dat kan niet met Photoshop CS.
De TS wil die sig automatisch laten maken door PHP. Dat kan niet met Photoshop CS.
Dat weet ik wel. maar wil hij nou gewoon 'runescape signature' of dat het automatisch word gemaakt?
Dan is het wel moeilijk om automatisch Signature te maken.?
Gewijzigd op 01/01/1970 01:00:00 door hans
hans schreef op 13.09.2008 10:35:
je kan toch wel een runescape stats signate maken met Photoshop cs.
of wil je net als dat van www.leetscape.com ?
of wil je net als dat van www.leetscape.com ?
Dat van leetscape doet het anders toch ook niet zo goed?
edit:
Nu werkt het wel lol
Gewijzigd op 01/01/1970 01:00:00 door Wouter De Schuyter
er zijn ook goal levels daar ect.
Wat bedoel je?
Paradox;
Inderdaad, net had je iets fout gedaan :) Maar om daar nou hardop om te gaan lachen... ^^
Maar met de laatste berichten geraak ik niet verder .
slash schreef op 13.09.2008 12:19:
Het is idd de bedoeling om de stats van Rs eruit te halen en op een signature die ik zelf zal maken erop te zetten.
Maar met de laatste berichten geraak ik niet verder .
Maar met de laatste berichten geraak ik niet verder .
Sorry, Maar daar mee kan ik je niet helpen ik ben geen proscripter blijf verder posten op www.phphulp.nl of op andere phphulps sites zoals : http://www.phpfreakz.nl/ <--- Daar zijn ook goeie scripters. die je verder kunnen helpen.
Of blijf posten Je kan hulp krijgen.
TIP : Maak een nieuwe forum pagina, Als titel : Stats signature rs wilt niet
Dan plak je daar je Code en bewerken ze hem hoe het moet!
M.V.G
Gewijzigd op 01/01/1970 01:00:00 door hans
het script tot nu toe :
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
putenv('GDFONTPATH=' . realpath('.'));
$imgname='slash350.png';
$im = @imagecreatefrompng($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
$arrSkills = array(
"Total",
"Attack",
"Defence",
"Strength",
"Hitpoints",
"Ranged",
"Prayer",
"Magic",
"Cooking",
"Woodcutting",
"Fletching",
"Fishing",
"Firemaking"
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var1 = $values['rank'];
$var2 = $values['level'];
$var3 = $values['exp'];
$color = imagecolorallocate($im, 214, 135, 26);
$font = 'arial.ttf';
imagettftext($im, 10, 0, 345, 63, $color, $font, $var1);
imagettftext($im, 10, 0, 345, 78, $color, $font, $var2);
imagettftext($im, 10, 0, 315, 93, $color, $font, $var3);
header('Content-Type: image/png');
imagejpeg($im);
imagedestroy($img);
}
else
{
echo "Username does not exist";
}
?>
putenv('GDFONTPATH=' . realpath('.'));
$imgname='slash350.png';
$im = @imagecreatefrompng($imgname);
error_reporting(E_ALL);
function GetRSstats($username,&$result)
{
# Return: Boolean
# And an empty array in your second parameter on failure, or filled with the skills on success.
# Please note; no support is given.
/*
###
### Made By Chessspider ( www.chessspider.nl - 2007© )
###
### Please leave this notice here. If you really want to make me happy, also put a link to my runescape world switcher:
### http://worldswitcher.chessspider.nl/
### on your website.
*/
# You might have to update these some day...
$arrSkills = array(
"Total",
"Attack",
"Defence",
"Strength",
"Hitpoints",
"Ranged",
"Prayer",
"Magic",
"Cooking",
"Woodcutting",
"Fletching",
"Fishing",
"Firemaking"
); // Skills... Order DOES matter, it should always be the same order as the highscores page.
$sDomain = "http://hiscore.runescape.com/"; // With trailing /
$sPage = "index_lite.ws?player="; // Page to request
# You shouldnt have to change anything from here
$arrLevels = @file($sDomain.$sPage.urlencode($username),FILE_IGNORE_NEW_LINES); // Obtaining scores, surpressing possible warnings
$result = Array();
if($arrLevels === false || empty($username) || strlen($username) > 15)
return false;
$iLength = count($arrSkills);
for($i = 0;$i < $iLength;$i++)
{
$levels = explode(",",$arrLevels[$i]);
$arrStats[$arrSkills[$i]]["skill"] = $arrSkills[$i];
$arrStats[$arrSkills[$i]]["rank"] = $levels[0];
$arrStats[$arrSkills[$i]]["level"] = $levels[1];
$arrStats[$arrSkills[$i]]["exp"] = $levels[2];
}
$result = $arrStats;
return true;
}
if(GetRSstats("slash350",$stats))
{
foreach($stats as $values)
$var1 = $values['rank'];
$var2 = $values['level'];
$var3 = $values['exp'];
$color = imagecolorallocate($im, 214, 135, 26);
$font = 'arial.ttf';
imagettftext($im, 10, 0, 345, 63, $color, $font, $var1);
imagettftext($im, 10, 0, 345, 78, $color, $font, $var2);
imagettftext($im, 10, 0, 315, 93, $color, $font, $var3);
header('Content-Type: image/png');
imagejpeg($im);
imagedestroy($img);
}
else
{
echo "Username does not exist";
}
?>
Gewijzigd op 01/01/1970 01:00:00 door slash