Hello guys I'm working on my website.
So I wanted to add date and time at seperate place on the page
Indian time is very hard.(php not working with me)
kindly help me with js or provide a php with html embedded
Hello guys I'm working on my website.
So I wanted to add date and time at seperate place on the page
Indian time is very hard.(php not working with me)
kindly help me with js or provide a php with html embedded
Just set the default time zone to your Local time zone
<?php
date_default_timezone_set("Asia/Calcutta"); //India time (GMT+5:30)
echo date('d-m-Y H:i:s');
?>