How to Set Current Date and Time in HTML Input by php
Sometimes there is a need to set the current date or time in input like in inquiry form, registration form, fee receipt form. We can easily set the current date and time in PHP by using some simple steps. Here are some steps following:
Solution :Step1 : echo (new DateTime())->format('Y-m-d'); paste this code in html input value like this :
<input type="date" value="<?php echo (new DateTime())->format('Y-m-d'); ?>">
<input type="date" value="<?php echo (new DateTime('H:i:s'))->format('Y-m-d'); ?>">
I hope this code will help you enjoy coding