Please message me if you can do this project. Include price estimate. I need a script created to scrape email addresses from this database. Each record in the database has a unique URL. (I will not list the real url in this post for privacy reasons) Each record follows a similar URL format: http://www.******/directory/index.php?q=john&scope=student&i=12 q= [student search name] (I will have a list of variables to input here from a .txt file EX: john, bill, smith, mary, susan, etc) scope=student (this will always remain the same) i= (this is a numerical value starting at 1. It will go up in increments of 1 until it reaches the end of the list. So for some names 30 will be the end, others may be 43, 76, or whatever the highest value for that name is) I want you to have it so the script stops adding one increments when it reaches a record that doesnt exist and move on to the next q= value For instance this link exists.. http://www.******/directory/index.php?q=john&scope=student&i=100 This link does not exist: http://www.******/directory/index.php?q=john&scope=student&i=101 So I want the script to stop at 101 and move on to the next q= value.