Jump to content

Recommended Posts

You could break apart the date with explode():

 

list($datePart_day, $datePart_month, $datePart_year) = explode('/', $mydate);

 

 

Then just use the new variables in the query:

 

$sql = "SELECT * FROM detail WHERE dob LIKE '%$datePart_month-$datePart_day'";

 

 

Of course you may need to do some checking to make sure month and day are valid. And make sure they are padded with zeros if needed.

Link to comment
https://forums.phpfreaks.com/topic/236525-php-date-field/#findComment-1215978
Share on other sites

@cyberRobot

 

It would be better to use the built-in MySQL functions for this, to avoid splitting the logic and it's a lot more efficient than using a LIKE statement.

 

@wilna

 

Ah okay great - though that wasn't what you said originally. Anyway you want to use the DATE() and MONTH() functions to do this:

 

select * from table where date(dob) = 16 and month(dob) = 5;

Link to comment
https://forums.phpfreaks.com/topic/236525-php-date-field/#findComment-1215995
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.