Jump to content

If Date is less than or equal to ...


spacepoet

Recommended Posts

Hi:

 

I am working with a little bit of code, but not certain if my syntax is correct. Doesn't seem to be doing what I need it to do:

<?php

if (date <= "4/8/2011")
     echo "Event Details";
     else
     echo "Default Text";
?>

 

Basically, I want to show "Event Details" if the date is before or on 4/8/2011.

 

If it is after 4/8/2011, I want to show "Default Text"

 

It seems to be doing the opposite.

 

What am I missing?

Link to comment
Share on other sites

Hi:

 

I tried it like this:

<?php

if (strtotime(date <= "4/8/2011"))
	echo "Event Details";
else
	echo "Default Text";
?>

 

But it is not working.

 

When I change the date to 3/1/2011, it still displays "Event Details"

 

Can you show me what you mean?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.