In case you've missed it, you are looking at an older version of the website. Checkout our latest version, we promise you will love it 😍

unset_edit_fields

void unset_edit_fields( string $var [, string $var [, string $... ]]  )
Quick Description: unsets the fields at the edit form.
Available for version >= 1.2.1

unsets the fields at the edit form.

Example:

 
$crud->unset_edit_fields('name','address','postcode');
 
or else
 
$crud->unset_edit_fields(array('name','address','postcode'));