Need to change the date format to mm-dd-yyyy while fetching from database in some forms it is displaying in the same format in some files it is displaying in yyyy-mm-dd format.
While doing echo in the function it is displaying in the format ( yyyy-mm-dd)
<?php echo $oppointArr['dob'];?>
But while fetching the same data in input type date it is displaying correctly.
<input type="date" class="form-control" value="<?php echo $oppointArr['dob'];?>" name="dob" id="dob" >