PHP
php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p id="t" ></p>
<script type="text/javascript">
window.onload = time;
function time(){
setInterval(function(){
document.getElementById("t").innerHTML = "<?php
date_default_timezone_set('Asia/Calcutta'); //India time (GMT+5:30)
echo $dateTime = date('l, d-m-Y H:i:sa');
?>" ;
}, 1)
}
</script>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run