I am currently using PHP form element : the submit button as
<input type="submit" name="submit" value"set"/>
and the form was being submitted like :
if(isset($_POST['submit']) && $_POST['submit'] == 'set'){..do something..}
Now in bootstrap a submit button is usually written as
<button type="submit" class="btn btn-success btn-sm">set</button>
My question is how to submit this form data since I cannot do it like the previous way. It might be a noob question but I am new to bootstrap. Any suggestions would be of great help.
submit? Check other fields in$_POSTarray?$_POST['submit'] == 'set'? Why in the world you will useisset($_POST['submit'])when you have$_POST['submit'] = 'set'<input type="submit" name="submit" value"set" class="btn btn-success btn-sm"/>