You guys are the best! You just know what exactly you are doing! Cool dudes!
You guys are the best! You just know what exactly you are doing! Cool dudes!
use java script
see my site ---------> http://www.okapopin.co.nr
java script code<form name="Tick">
<input type="text" size="11" name="Clock" > GMT +07.00 <BR>
</form>
<script>
<!--
/*By George Chiang (JK's JavaScript tutorial)
JavaScript Kit- Your comprehensive JavaScript, DHTML, CSS, and Ajax stop
Credit must stay intact for use*/
function show(){
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=hours+":"+minutes+":"
+seconds+" "+dn
setTimeout("show()",100)
}
show()
//-->
</script>
Thanks for all the info guys - I've been looking for a similar task myself!![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)