0
I’m taking a date from the database and displaying it in a field input
in HTML.
Only, for the client to be able to edit as a date, I need it to be in an input type="date". However, there seems to be some restriction in HTML5 on this type of input.
How could I insert this data into the input I want?
Example of my code:
<input type="date" class="form-control" name="" id="" value="<?=$data;?>" disabled >
How’s the date in the bank?
– user60252