[Solved] What’s wrong with my button?


Make your button type as “submit” like below.

<button type="submit" name="ubah" class="btn btn-primary">Ubah</button>

Else you can also keep it as button, but in that case u need to use ajax(javascript) and onclick event on button , for example :

<button type="button" name="ubah" class="btn btn-primary" onclick="save()">Ubah</button>

where save() is some function in javascript that you will create to save the form data.

solved What’s wrong with my button?