Coding an indexing tool?

by 5 replies
7
Hey all,

Just wondering if anyone could help me with a bit of coding, or at least tell me how I can do this.

I want to be able to have someone enter a URL into a form and press submit. From there a page will load up and have a series of websites with the url placed at the end.

i.e. http://series-of-websites.com/the-URL-they-entered.com

Anyone know how I could achieve this?

#programming #coding #indexing #tool
  • Easily accomplished using the most basics of PHP. Just do a GET on their field form input (Eg, $domain), then do a simple print "http://series-of-websites.com/$domain"; and you're set.
    • [ 1 ] Thanks
  • Yep very easy to code a bot in vb.net to do this

    Graham
    • [ 1 ] Thanks
  • yes, it's easy to do.. so here's some code for you to tweak for you needs:

    http://www.makemclick.com/append-url.phps

    grab the code and put it on your server, build your html form to (validate/submit) the url to the script and it will echo out the data formatted as you requested.

    example output:

    http://www.makemclick.com/append-url...rriorforum.com

    peace

    p.s. i'll be removing the script from my server tomorrow.

    • [ 1 ] Thanks
  • Ye thanks all
  • Use HttpWebRequest or WebClient in VB.NET - you'll get done what you need in no time.

Next Topics on Trending Feed