Link generator
  


Purpose of Schematic link generator is to generate a list of related links according to simple formula.
Many sites on internet are data-base driven (which means that many pages can have the same basic URL with only few parameters changed).
For example let's examine a little closer a Google's result page link:
If you do a search for "guitar" Google will find 1000s of pages with keyword "guitar".But results are displayed in 10 by 10 mode.
You see first 10 results then clicking "next" next 10 results and so on.
First 10 results are at URL:

http://www.google.com/search?q=guitar&start=0

here we can see our keyword "guitar" and start=0-which means "show first 10 results for guitar".

If we put start=1 instead start=0 and load that link in browser we will see next page of results.
For start=5,Google will show 6th page of results and so on.
So we can generate as many pages with results as we want just changing number in "start=0".
First 5 pages of results would be:
http://www.google.com/search?q=guitar&start=0
http://www.google.com/search?q=guitar&start=1
http://www.google.com/search?q=guitar&start=2
http://www.google.com/search?q=guitar&start=3
http://www.google.com/search?q=guitar&start=4

Now the purpose of Schematic link generator should be more clearer and obvious.

Start- page to start generating links (in our example it is 0)
Step-every next link generated will have variable parameter increased by "step" value (in google example step is 1)
How many links-number of links to generate (in our example 5).

So to generate let's say 10 links with googles search results for "guitar" we do as follows:
http://www.google.com/search?q=guitar&start=0
http://www.google.com/search?q=guitar&start=1
http://www.google.com/search?q=guitar&start=2
http://www.google.com/search?q=guitar&start=3
http://www.google.com/search?q=guitar&start=4
http://www.google.com/search?q=guitar&start=5
http://www.google.com/search?q=guitar&start=6
http://www.google.com/search?q=guitar&start=7
http://www.google.com/search?q=guitar&start=8
http://www.google.com/search?q=guitar&start=9

That's it.
Now for what it's worth?
Well instead of Google's results you can generate links for all kinds of forums,guestbooks,comments, and all  other kinds of pages where we expect E-mails to be present.So instead of searching whole big site you can search only its part of interest for  us in a precise way.