When I disabled some form values in js, the values were not sent and I took corrective action.
After investigating, it seems that the disable
attribute is not POSTed, and in order to avoid this and POST, I added that the readonly
attribute can be used.
<input placeholder="Name" type="text" name="company" readonly="readonly">
Not sent when disabled attribute is specified in form
Recommended Posts