for e.g. if i pick date from datepicker and if that day is wednesday i want to get all data from "wed" column having particualr value only.....
i need php code and mysql qyery for this??
-- Table structure for table `list`
--
CREATE TABLE `list` (
`id` int(11) NOT NULL auto_increment,
`Mon` char(1) default NULL,
`Tue` char(1) default NULL,
`Wed` char(1) default NULL,
`Thur` char(1) default NULL,
`Fri` char(1) default NULL,
`Sat` char(1) default NULL,
`Sun` char(1) default NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ;
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…