Tagged Questions
0
votes
2answers
83 views
mysql database comparison before insert
So I am scraping a site for urls and storing these urls in a db I am looking for the lightest way to compare the new scraped urls with the urls stored to only add the ones that arent currently stored ...
0
votes
1answer
149 views
Easiest platform to scrape/store/display and search data?
I have plan to build a website where the users could enter some data about their own cars (say number of years, their self-rated maintained level and so on) and then I can scrape some of the ...
-1
votes
3answers
182 views
php scrape to write to mysql database error
first function is this
$output_csv = fopen( "Poems.csv", "w" );
..code here
$poem_text = trim($pre->innertext);
$poem_text = ...
0
votes
1answer
267 views
php mysql connect and create table with no error but no data
I was able to connect to mysql db and create a table but there is no data and would like to know what i am missing or doing wrong? I have post my function code below. My echo count is confirmed and I ...
0
votes
1answer
581 views
PHP: how to extract content or scrape data sets from website source page
I would like to know how to scrape the content of the source code from website using php. I have tried using http://simplehtmldom.sourceforge.net/ and also looked at Best methods to parse HTML with ...
2
votes
1answer
468 views
Scraping structured information from hundreds of Word documents?
I've been tasked with extracting some structured information from hundreds of human readable documents (mostly MS Word) and to put it into a database. The data is pretty much embedded in tables ...