how to track link development?

Discussion in 'Link Development' started by goofgle, Mar 2, 2006.

  1. #1
    How do you track href titles?

    <a href="http://www.widget*com" title="widget, linkdev#1"">red widget</a>

    <a href="http://www.widget*com" title="widget, linkdev#2"">red widget</a>

    I was thinking of giving keywords for different dev groups, and would like to track it through href title to see which one does the best work.
     
    goofgle, Mar 2, 2006 IP
  2. BrianR2

    BrianR2 Guest

    Messages:
    734
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I'm not sure if I understand your question correctly but if you add a query string to the link with the title information then you can pass the title information along when someone clicks on the link.
    e.g.
    <a href="http://www.widget*.com?title=linkdev1" title="widget, linkdev#1">red widget</a>
    <a href="http://www.widget*.com?title=linkdev2" title="widget, linkdev#2">red widget</a>

    and then on http://www.widget*.com you can retrieve linkdev* with $_GET['title'] with PHP or in ASP Request.Query("title").

    Hope that addresses your question.
     
    BrianR2, Mar 2, 2006 IP