Codice PHP:
<?php 
header
("Content-type: image/gif"); 
$user $_GET['user']; 
$country $_GET['country']; 
$sedia $_GET['sedia']; 
$case1 "throne".$sedia."_1.gif";
$case2 "throne".$sedia."_2.gif";
    
$im imagecreatefromgif($case1); 
    
$home imagecreatefromgif("http://www.sito.$country/imaging/avatar?user=$user&action=sit&img_format=gif"); 
    
imagecopy($im$home20, -150064110); 
    
$throne imagecreatefromgif($case2); 
    
imagecopy($im$throne000070110); 
//Create Image 
imagegif($im); 
imagedestroy($im); 
?>