Is it possible to pass a value of variable from PHP to JavaScript? Thanks all experts!!
I've deliberately not learned any javascript since you never know if the site visitor might have js turned off - rendering it useless for anything but candy imho.
I'd have to admit that the majority DO have js turned on though.
Yes totally agree with you ... but something that only JavaScript can do like dynamic clock ... I would like to implement a dynamic clock for the server time ... any idea??
Yes, echo it in the Javascript source the way you'd echo anything in the page.
var myJSvar = '<?php echo $myPHPvar?>';
thx Weedpacket ... I got it!!