On 10/24/07, Daniel Brown <[EMAIL PROTECTED]> wrote:
> On 10/24/07, Jason Pruim <[EMAIL PROTECTED]> wrote:
> > Hi Everyone,
> >
> > I am attempting to get the logic of something figured out and I
> > thought someone might be able to confirm what I'm thinking :)
> >
> > I want to be able to display something like an image of a turkey
> > during the month of november from now until I'm dead. I was playing
> > around with mktime and it showed very different time stamps for
> > 11/1/07 and 11/1/08 so I can't set it to compare specifically to the
> > timestamp.. But, would I be able to have it evaluate the string
> > stored in php as 11/1/07 and create a timestamp to compare todays
> > date to, and if it matches within the month, have it display the
> > turkey? and if not, have it display a different graphic?
> >
> > I'm attempting to be able to make small changes to my website without
> > having to remember to do them or change them :)
> >
> > I hope I've made enough sense that someone can point me in the right
> > direction :)
> >
> > Thanks for looking!
> >
> > --
> >
> > Jason Pruim
> > Raoset Inc.
> > Technology Manager
> > MQC Specialist
> > 3251 132nd ave
> > Holland, MI, 49424
> > www.raoset.com
> > [EMAIL PROTECTED]
> >
> >
> >
>
>
> <?
> if(date("M") == "11") {
>     // Display turkey
> }
> ?>
>
> --
> Daniel P. Brown
> [office] (570-) 587-7080 Ext. 272
> [mobile] (570-) 766-8107
>
> Give a man a fish, he'll eat for a day.  Then you'll find out he was
> allergic and is hospitalized.  See?  No good deed goes unpunished....
>

    Sorry, that should've been a lower-case M.

<?
if(date("m") == "11") {
    // Display turkey
}
?>

-- 
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

Give a man a fish, he'll eat for a day.  Then you'll find out he was
allergic and is hospitalized.  See?  No good deed goes unpunished....

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to