I am using PHP with a Microsoft SQL server and my users are all on IE9. I have a form that puts a variable into the value of a submit button to be posted to another page. I would like the face of the button to be different from the value so I was using this code:
echo "<button type='submit' value='".$userid."' name='userid'>Edit</button>";
The problem is that IE9 is passing 'Edit' to the next page instead of the variable in value.
Can this be fixed to work is there is another way to change the label on the face of the button besides the value?