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? Link to comment https://forums.phpfreaks.com/topic/3992-dynamic-sig-help/ 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] Link to comment https://forums.phpfreaks.com/topic/3992-dynamic-sig-help/#findComment-14000 Share on other sites More sharing options...
AndyB Posted March 3, 2006 Share Posted March 3, 2006 [code] echo abs($days);[/code] Link to comment https://forums.phpfreaks.com/topic/3992-dynamic-sig-help/#findComment-14014 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] Link to comment https://forums.phpfreaks.com/topic/3992-dynamic-sig-help/#findComment-14016 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.