How to store value checked by checkbox ( on the VF page ) in the database with controller?
Sample Code: Visualforce page: <apex:page controller="Sample"> <apex:form > <apex:pageblock > <apex:pageBlockSection > <apex:panelGrid columns="2"> Name : <apex:inputText value="{!Nam}"/> Skilled : <apex:inputCheckbox value="{!Skilled}"/> ....