I have 4 checkbox.
1)name 2)phone 3)address 4)dob 5)all
What i am trying to do suppose name,address,& dob is checked by user,then query is:
Select name,address,dob from table;
Similarly if phone,address
select phone,address from table;
& for all
Select * from table;
I am getting value of checkboxes.
Need suggestions