hi there i have a list page where i want 2 show drives for next 2 month. i am using php in front end and mysql as backend. can anybody help me??
You can do a query like this $sql = 'SELECT * FROM tablename WHERE date>="'.date('Y-m-d').'" AND date <="'.date('Y-m-d',strtotime('+2 months')).'"'; PHP: Hope you get the idea.