Talk:lib/formslib.php Usage: Difference between revisions
From MoodleDocs
David Mudrak (talk | contribs) m Text replacement - "</code>" to "</syntaxhighlight>" |
David Mudrak (talk | contribs) m Text replacement - "<code php>" to "<syntaxhighlight lang="php">" |
||
| Line 1: | Line 1: | ||
The sample code on this page refers to '''$fromform''': | The sample code on this page refers to '''$fromform''': | ||
< | <syntaxhighlight lang="php"> | ||
} else if ($fromform = $mform->get_data()) { | } else if ($fromform = $mform->get_data()) { | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 20:34, 14 July 2021
The sample code on this page refers to $fromform:
} else if ($fromform = $mform->get_data()) {
What is $fromform and where is it defined?
Answer: It is defined inside the exact IF you quoted ("$fromform = $mform->get_data()") and it holds all the form's data from the form's page (in to which, the user just entered her/his preferences) Now, it is your responsibility to save it into the $DB