I have bens msnbot sig but it shows only as small MSN logo picture !
Now I want to put that little MSN Status image on background, using PHP if its possible !
here is what I mean:

Anyone can help me ????
Thank you in advance!
Moderator: General Moderators

Code: Select all
<!--
Replace width & height CSS definitions
with the actual width & height of your
background image.
-->
<style type="text/css">
#mydiv {
width: 100px;
height: 40px;
background-image: url(background_image.png);
}
</style>
<div id="mydiv"><img src="msn_icon.gif" alt="" /></div>Code: Select all
$icon = imagecreatefrompng("icon.png");
$background = imagecreatefrompng("background.png");
imagecopy($background,$image,5,5,0,0,imagesx($icon),imagesy($icon));
header("Content-type: image/png");
imagepng($background);