hello there, hope someone can help me with this ... i will just show the code what im tryng to do ... <?php $url = "http://www.website.com/?millis='+new Date().getTime()+'"; echo $url; (here to give me like http://www.website.com/?milis=31236128763) ?> PHP: is anyway to i can add the javascript there ? i really need this hope someone can help me ... or $url = <script src="http://www.website.com/url.js"></script> ; echo $url; (to show me just the link from url.js ... PHP:
^^ need not javascript to do this because php can <?php $url = "http://www.website.com/?millis=" . microtime(true) * 1000; echo $url; //(here to give me like http://www.website.com/?milis=31236128763) ?> PHP: