Here is my code. How can I make my checkbox readonly mode so that user cannot edit again?
<input type="checkbox" id="tog_gmat"
       <?php 
           if($gmat_flag == 1) 
              {
                echo "checked";
              } 
        ?> 
class="chk" value="GMAT">
 
     
     
    