If I want to input multiple data Continuously,
How to auto generate a blank add form after click the "submit" button of add form?
2 Answers
You can set closeAfterAdd to false. It will then show blank insert form again.
$opt["add_options"]["closeAfterAdd"] = false;
…
$g->set_options($opt);
Your Answer