icydude Posted March 3, 2006 Share Posted March 3, 2006 I have been searching everywhere but i cant find a helpful artical for my needs.I need to create a counter that outputs a 25x25 png with a single number and white back ground.It would begin on Feb 25, 2006 then count up by one daily.so today it would be 6, then tomorrow display 7 then 8 and so on.can anyone help me out? Quote Link to comment Share on other sites More sharing options...
icydude Posted March 3, 2006 Author Share Posted March 3, 2006 well i figured it out a bit.now my question is how do i get my output to be absolute value with no "-" sign.[code]<?php$days = (strtotime("2006-2-25") - strtotime(date("Y-m-d"))) / (60 * 60 * 24);print $days;?>[/code] Quote Link to comment Share on other sites More sharing options...
AndyB Posted March 3, 2006 Share Posted March 3, 2006 [code] echo abs($days);[/code] Quote Link to comment Share on other sites More sharing options...
exeterdad Posted March 3, 2006 Share Posted March 3, 2006 Maybe not the shortest way.... but works for me.[code]<?php$days = floor((strtotime("now") - strtotime("2006-2-25")) / 86400);print $days;?>[/code] 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.