So the convention for using input of type submit is
<input type='submit' value='Submit'>
this will give me a button that says “send” on it, and inside the column array I will have
$_POST['submit'] = 'Submit'
Is it possible for the submit button to display "Submit", but has a post value of different. In other words, I want a button that still says send, but
$_POST['submit'] = 1
Is this possible without JavaScript?
source
share