I was designing form in php and html. For date i have used
In Date <input type="date" name="in_date" value="<?php echo !empty($errors) ? $_POST["in_date"] : date("Y-m-d"); ?>" />
In some pc it shows date in "dd/mm/yyyy" and in some it show "mm/dd/yyy" output for the above code in chrome browser. Is there any way in PHP & HTML I can fix input format to "dd/mm/yyyy".
Thanks in advance.