Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
AntonHTC Posted February 20, 2018 Posted February 20, 2018 Hi, Say I have a form input $form->add( new \IPS\Helpers\Form\Number('time', NULL, TRUE ) ); How can I assign the values of that box to some variable, say to $time so that I can send that into database?
bfarber Posted February 20, 2018 Posted February 20, 2018 if( $values = $form->values() ) { $time = $values['time']; }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.