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_add_fields

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

Unsets the fields at the add form.

Example:

 
$crud->unset_add_fields('name','address','postcode');
 
or similar to this:
 
$crud->unset_add_fields(array('name','address','postcode'));