CRUD Generator V2
CRUD V2 which is a improved version of the CRUD V1 generates a clean PHP, HTML, and JQuery code for your cruds by just p...
CRUD V2 which is a improved version of the CRUD V1 generates a clean PHP, HTML, and JQuery code for your cruds by just providing a json defining the fields in the form, along with the field type and other meta information.
Sample JSON
array(
// field_name [type, isrequired, array_select, inner_type] <= "template"
"name" => ["input", "", "", "text"],
"names" => ["input", "multiple", "", "text"],
"my_files" => ["input", "multiple", "", "file"],
"my_file" => ["input", "", "", "file"],
"my_image" => ["input", "", "", "image"],
"checbox_test" => ["input", "multiple", ["Yes", "No"], "checkbox"],
"select_test" => ["select", "", ["Yes", "No"], ""],
"customerId" => ["input", "hidden value='customer_id'", "", "text"],
"document" => ["input", "", "", "file"],
);