Hi.
how can i add text (literal) in a edit form, for example, i need to put "Danger if you change these values" in the bottom of the form.
Thanks!
2 Answers
You can set:
$opt["add_options"]["bottominfo"] = "<strong>Danger</strong> if you change these values";
$g->set_options($opts);
Refer demos/editing/dialog-layout.php
Your Answer