Well at the moment, I have a box, with a background and an image above that.
How do I add another image on top of the image and background?
So the layers are:
1) Background
2) Image 1
3) Image 3
The Image 3 has the size of 52x47

My code is;
PHP Code:
<?php
header
("Content-Type: image/gif");

$habbo $_GET['habbo'];

$im imagecreatefrompng("getdjbg.png");
$thumbWidth "60";
$thumbHeight "120";
$url "http://www.habbo.com/habbo-imaging/avatarimage?user=$habbo&action=&direction=4&head_direction=4&gesture=sml&size=l";
$srcImg imagecreatefrompng($url);
$origWidth imagesx($srcImg); 
$origHeight imagesy($srcImg);  
$thumbImg imagecreate($thumbWidth$thumbHeight);

imagecopyresized($thumbImg$srcImg0000$thumbWidth$thumbHeightimagesx($thumbImg), imagesy($thumbImg));

$image imagecopy($im$thumbImg0, -105850100);

imagegif($im);
imagedestroy($im);
?>
Thanks.