How can get current system time continuously without refresh
of page?
Answer / nilsoft
<script type="text/javascript">
function timedMsg()
{
var t=setInterval("change_time();",1000);
}
function change_time()
{
var d = new Date();
var curr_hour = d.getHours();
var curr_min = d.getMinutes();
var curr_sec = d.getSeconds();
if(curr_hour > 12)
curr_hour = curr_hour - 12;
document.getElementById('time').innerHTML =
curr_hour+':'+curr_min+':'+curr_sec;
}
timedMsg();
</script>
<table>
<tr>
<td>Current time is :</td>
<td id="time"></td>
<tr>
</table>
Is This Answer Correct ? | 51 Yes | 7 No |
What is used of serialize and unserialize in php?
Is there any way to open notepad within php?
How can import database to mysql using php code?
What is difference between ksort and krsort in php?
Given a string=”me,I,myself”; .Using javascript only create an array out of this string and then send a POST request to the url “record.php” without reloading the page. The post key parameters should be n1,n2 and n3 respectively.
what is main difference between array_push and array_pop?
What is difference between in_array and array_search?
1)how i get the current system time using php?
can we pass variable in array to traverse it?
What is used of phpinfo() function in php?
I have array like $array = array(1, "hello", 1, "world", "hello"); if i want the following output then how can i do this? Array ( [1] => 2 [hello] => 2 [world] => 1 )
How can i know that how many user are visited to my page in php?