1
On my client’s website, there is a kind of search tool. This search requires the user to choose which of the sections (pages) he wants to search. With the desired word and the chosen section, it redirects to the page and brings the desired search results.
For example, if I want to search something in Download Center, the page usually is: meusite.com.br/servicos/centraldownloads/
But if I use the search tool: meusite.com.br/busca/6/
What I wanted to know is how I can and if it is possible to monitor how many people are going to these pages through the search (pages that start with meusite.com.br/search).
The other thing I wonder if I could do a monitoring is through the SEARCH button of this search tool, it has the following HTML code:
<input type="submit" class="BtnBuscar replace-bt" value="">
Does anyone have any idea?
Use $_SERVER['HTTP_REFERER']; on pages. and make sure it contains meusite.com.br/search
– user60252
and these how many people would you save where? BD, txt file?
– user60252