Jump to content

[SOLVED] MySQL Date field help with searching


cooldude832

Recommended Posts

I want to be able to search by things with a certain date field like:

Last 10 days

last 5 days

last 3 day

yesterday

today

 

and I have a field that is a Date so I want to say WHERE CDate >= '$searchdate';

I do this, but its altering my year not day

 

	$temptoday = date("Y-m-d");
	$tempcdate = $temptoday-$searchc['date'];
	$critera .= "WHERE CDate >= '".$tempcdate."' ";
	$whereset = "yes";

 

Archived

This topic is now archived and is closed to further replies.

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