habbo.phpHTML Code:<html> <head> <title>What does your Habbo look like?</title> </head> <body> <form action="habbo.php" method="post"> Enter Habbo Name: <input type="text" name="name" /><br /> <br /><input type="submit" name="submit" value="Submit" /> <br /><br /> </body> </html>
PHP Code:<?
header("Content-Type: image/gif");
$thumbWidth = "60";
$thumbHeight = "120";
$name = $_GET[name];
$url = "www.morningsunshine.net/habbo.php?name=$name
";
$srcImg = imagecreatefrompng($url);
$origWidth = imagesx($srcImg);
$origHeight = imagesy($srcImg);
$thumbImg = imagecreate($thumbWidth, $thumbHeight);
imagecopyresized($thumbImg, $srcImg, 0, 0, 0, 0, $thumbWidth, $thumbHeight, imagesx($thumbImg), imagesy($thumbImg));
$ImgWhite = imagecolorallocate($thumbImg, 255, 255, 255);
imagefill($thumbImg, 0, 0, $ImgWhite);
imagecolortransparent($thumbImg, $ImgWhite);
imagegif($thumbImg);
imagedestroy($thumbImg);
?>
There ya go boyo![]()






