AntonHTC Posted February 20, 2018 Share 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? Link to comment Share on other sites More sharing options...
bfarber Posted February 20, 2018 Share Posted February 20, 2018 if( $values = $form->values() ) { $time = $values['time']; } Link to comment Share on other sites More sharing options...
Midnight Modding Posted February 20, 2018 Share Posted February 20, 2018 edit: making another topic. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.