Jump to content

how to track search phrases


mga_ka_php

Recommended Posts

Do you have a mysql database?  If you do, create a search_phrases table in your database.  Whenever anyone searches, add an entry for their search phrase.  Along with the search phrase, have a count column.  If someone searches for a phrase that already exists in the database, increment the count column.

 

<?php
$query = $_GET['query'];
$query = "SELECT COUNT(*) as total FROM search_phrases WHERE phrase = '". mysql_real_escape_string($query) ."'";
// Im honestly too drunk to finish this code, but if the search phrase exists, increment the count, if it doesnt, insert it into the database.
?>

 

:)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.