Use Jquery and send data using ajax, you can solve your problem:
Elements with thedisabledattribute are not submitted, or you can say that their values are not posted (seeHTML 5 Specification for Building Form Datasets).
disabled
Right now,
FYI, as per17.12.1In the HTML 4 specification:
You can use thereadonlyattribute in your case, by doing this you will be able to post the data of the field.
readonly
For reference only, according to17.12.2In the HTML 4 specification:
Use Jquery and send data using ajax, you can solve your problem:
Elements with the
disabled
attribute are not submitted, or you can say that their values are not posted (seeHTML 5 Specification for Building Form Datasets).Right now,
FYI, as per17.12.1In the HTML 4 specification:
You can use the
readonly
attribute in your case, by doing this you will be able to post the data of the field.Right now,
For reference only, according to17.12.2In the HTML 4 specification: