i use php and mysql.
i had stored a huge number of date in mysql database. Example 06/13/2004(mm/dd/yyyy).
i want to select all fields from database based on month and year. Day(dd) doesnt matter
Therefore i had queried
"Select * from table where date = '$month/**/$year'"
but it doesnot works.
So which is the correct query.
Values for $month and $year are retrived from customer who can enter this values in textboxes. thanks