looking for script which convert html page to tab seperated file and it would be awesome if it check the link and get their content as well.
From the first line of your post I have no idea what you asking for. Based on the second line it sounds like you want to fetch the links or at least extract them. Is this right? Is this all you want?
i m looking for a script which can extract the content of the page and also if theres a link on the page, go to that link and extract the content too. something like the crawler
Well thats simple enough to do with a regular expression to match any urls and then file_get_contents to fetch the contents. How do you want to store the data? I really don't think a tab delimited file is going to be your best approach in this instance.
Perl would be a faster way of doing this than php but since you posted it here . . . Check out sphider which will act as a search engine spider (indexing keywords, gathering & following links, etc.). If you want to index the code of the page you will have to hack it out by adding file_get_contents inside the script as it does not save the whole page, just words for indexing. Great script though, high marks in my book.
I am looking for a Free Song Lyrics Script.. Just planning to have a site about on son lyrics... But dont know how to get started... Any idea where in this forum about FREE scripts and where to download?
Neva tried out perl, still in learning mode PHP, so i thought a PHP script would let me play around with it. Thanks for the link but i had already written code which would do most the work i needed to. @streety, yup i did use file_get_contents and then extract, since the page i was gettin the content from was all messed with tables and css stuff, my work got done. Thanks guyz.
Try this thread for directories for php scripts. I would start with hotscripts.com, scripts.com, scriptsearch.com. protocol96, I'm pleased to hear you've got it working.