Pass form fields from application to view? |
Yes, you can save the output of form_dropdown to a variable:
PHP Code: $html_form = form_dropdown(...); And you can create the whole form: PHP Code: $html_form = form_open(...) . form_dropdown(...) . form_submit(...) . form_close(); |
Messages In This Thread |
Pass form fields from application to view? - by Isterklister - 03-09-2020, 03:53 AM
RE: Pass form fields from application to view? - by includebeer - 03-09-2020, 04:02 AM
RE: Pass form fields from application to view? - by Isterklister - 03-09-2020, 05:20 AM
RE: Pass form fields from application to view? - by tweenietomatoes - 03-09-2020, 07:27 AM
RE: Pass form fields from application to view? - by includebeer - 03-09-2020, 08:00 AM
|