It's supposed to show your name as an image.
PHP Source Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php //error_reporting(E_ALL); //ini_set('display_errors', '1'); function get($a,$b,$c){ 	$y = explode($b,$a); 	$x = explode($c,$y[1]); return $x[0]; } $user=file_get_contents("http://unrealsoftware.de/users.php?o=5&d=1"); $user=get($user,'<a class="ilb" href="profile.php?userid=','</a>'); $user=split('">',$user); $user="Hello $user[1], we have been expecting you."; $im = @imagecreate(strlen($user)*9.5,20); $background_color = imagecolorallocate($im,0,153,0); $color = imagecolorallocate($im,255,255,255); imagestring($im,20,10,1,$user,$color); header("Content-Type: image/png"); imagepng($im); imagedestroy($im); ?>
Enjoy, please tell me if it works or not.