I've got a ton of date entry to do at the minute, pulling bike info from the manufacturer's site and copy/pasting it into the back end of an online bike shop. Is there anything out there that I can configure to do some of the grunt work for me by taking certain entries from one table and pasting them into a second? Cheers
If the pages are all identical bar the info and you happen to know PHP, you can use fopen to open the pages, read the info, and then just stick it in your database. Once you have used fopen to open the page you can read all the links off automatically to save putting them in by hand. It doesn't matter if it reads links that go off elsewhere as when you read the page for the info the html won't match (well, odd's aren't high!) and nothing will be stored. It's not a particularly hard script to write, but could be prone to bugs as it uses regex to read pages etc. Thus, if there aren't that many pages to copy then it could take longer this way