Is there a way to see what kind of search terms are queried on my custom search box?
ThirdWheel
10:21 am on Jul 16, 2008 (gmt 0)
If you display the results on your site, you can do this with PHP, just extract the search term from the result's URL ($term = $_GET['q']). The processed string can then be stored in MySQL with timestamp etc so you can call stats by day etc.
If you need more, should find plenty if you GS it.
Dick
netmeg
3:18 pm on Jul 16, 2008 (gmt 0)
You can also turn it on in Google Analytics, if you are running that.
anand84
6:10 am on Jul 17, 2008 (gmt 0)
Thanks ThirdWheel, that was a nice way to extract the search terms.