Forum Moderators: coopster
I currently have a site that has about 150 html pages on it.
I am restructuring the site and am trying for find a quick way to transfer the information into a database or spreadsheet.
For example, on most pages it will just be the title, subtitle, and then the article text.
I want an automatic tool that will go through my site and put each piece of information in a different column (one for title, one for sub, one for article) and row (for each page) in excel.
Is there such a tool?
Thank You,
Alex
However it shouldnt take to much work with regular expressions to search for <title> and the other tags you want, then put them into CSV format. You can then read the CSV into a spreadsheet.
preg_match [uk.php.net] will get you started.