Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display of navigational links in an xml file

Status
Not open for further replies.

MsRanjan

Programmer
Jun 11, 2008
1
US
I need some suggestion and tips to proceed in my project.

Queries are given in the search engines by the user.Navigational links are displayed by the search engines in response to the query given by the user.i need to track these links and display it in an xml file.is it possible to do?if so can u suggest me its ways..

hope the question is explanative..if not i am sorry,plz correct me

Thankyou.
 
If you're writing the search engine:

Most search engines use a "frame page" to display the page (and the link) when a user clicks on a link. Basically, instead of sending a person to the link points to (Do a quick google to see what I mean.)

That frame page could contain PHP code which would modify an XML file on the mycompany.com server to add an XML "record" similar to the following:
Code:
<oneclick>
    <url>[URL unfurl="true"]http://www.ifoundsomething.com</url>[/URL]
    <ipaddy>123.145.33.142</ipaddy>
              (other info)
</oneclick>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top