HI, i need to know how write the code as i want is: to turn off the image or link on specific date what is the code? i cant find anywhere using googles... Thanks in advance
If you needs to show other image if not exact date try this (I have modified the code) and this is php code and not html (html can't do this) <?php if (date < "what ever date you want") { echo "the image / link that you want to show"; } else { echo "the image / link that you want to show"; } ?> PHP: