I am trying to create two submit button in my form
<form id="form-input-wrapper" action='test.php'>
//form items..
//form items..
    <button class="btn btn-primary" type="submit" value="old">first button.</button>
    <button class="btn btn-primary" type="submit" value="new">second button</button>
</form>
My question is how to distinquish which button the user clicks in my test.php page?
 
     
     
     
    