diff options
Diffstat (limited to 'sqlbox/view.php')
-rw-r--r-- | sqlbox/view.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sqlbox/view.php b/sqlbox/view.php index 96c3e36..123c21f 100644 --- a/sqlbox/view.php +++ b/sqlbox/view.php @@ -78,5 +78,10 @@ echo $OUTPUT->heading('Yay! It works!'); $form = new mod_sqlbox_form(NULL, array()); $form->display(); +$data = $form->get_data(); + +if ($data) + print_r($data); + // Finish the page echo $OUTPUT->footer(); |