Jump to content

icydude

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

icydude's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. It outputs a number, ie today would be "11" i want the 25x25 "ash.png" to show the number dynamicly.
  2. 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] <?php header("Content-type: image/png"); $image = imagecreatefrompng("ash.png"); $clr_black = imagecolorallocate($image, 0, 0, 0); imagepng($image); imagedestroy($image); ?> [/code]
  3. 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]
  4. 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?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.