I'm trying to track users searches on my site so I can offer them better results and post the most searched torrent on the front page etc... So I need to install this tracking code from getclicky.com on one of my php pages but I have no idea how to put it in there. Can anyone show me how? Heres the script. <!-- sticky traffic analytics --> <script src="http://static.getclicky.com/55555.js" type="text/javascript"></script> <!-- sticky traffic analytics --> Code (markup): and the bottom of my page ends like this. $url = "http://www.torrentz.com/search?q=". $q. "&x=0&y=0"; break; } ?> Code (markup): Thanks in advance.
this is very similar to what I have on my site.. this should work for you: $url = "http://www.torrentz.com/search?q=". $q. "&x=0&y=0"; break; } <script src='http://static.getclicky.com/55555.js' type='text/javascript'></script> ?> Code (markup):