|
really, you'd better create a database with a restraunt menu and add a separate field marking that the entry is "special"
it can be an enum field:
special enum('yes', 'no')
then search for the records with appropriate date and add condition AND special="yes"
this is the right approach for your task
|