Hello,
I'm working with grocery CRUD inside a Codeigniter installation, I made a table with three fields:
id
name
text
the text field is "longtext" (I know is very large but is just to be sure that the issue does not depend by a MySql limit)
... // primary key $crud->set_primary_key('prova_id'); // set subject $crud->set_subject('Prova'); // displayed columns on list $crud->columns('name','text'); // displayed columns on edit operation $crud->edit_fields('name','text'); // displayed columns on add operation $crud->add_fields('name','text'); ...
but when I add a text longer than 499992 characters, the edit page is rendered as blank page.
Does it depend by GroceryCrud or Codeigniter?
Thanks,
Alfredo