icydude Posted March 7, 2006 Share Posted March 7, 2006 hey everyone,I am not very good at php and have tried to create a dynamic sig.I need to display this:[code]$days = floor((strtotime("now") - strtotime("2006-2-25")) / 86400);echo abs($days); [/code]Now using the follwing how can i put that into this:[code]<?phpheader("Content-type: image/png");$image = imagecreatefrompng("ash.png");$clr_black = imagecolorallocate($image, 0, 0, 0);imagepng($image);imagedestroy($image);?> [/code] Quote Link to comment Share on other sites More sharing options...
Steveo31 Posted March 7, 2006 Share Posted March 7, 2006 What exactly are you trying to do? From what the code puts out, looks like a countdown to Christmas in months, but whats the image? Quote Link to comment Share on other sites More sharing options...
icydude Posted March 7, 2006 Author Share Posted March 7, 2006 It outputs a number, ie today would be "11"i want the 25x25 "ash.png" to show the number dynamicly. Quote Link to comment Share on other sites More sharing options...
greycap Posted March 8, 2006 Share Posted March 8, 2006 [!--quoteo(post=352667:date=Mar 7 2006, 05:10 PM:name=icydude)--][div class=\'quotetop\']QUOTE(icydude @ Mar 7 2006, 05:10 PM) [snapback]352667[/snapback][/div][div class=\'quotemain\'][!--quotec--]It outputs a number, ie today would be "11"i want the 25x25 "ash.png" to show the number dynamicly.[/quote]use imagestring() Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.