0
votes
1answer
55 views

Scraping with PHP DOM

Here is a snippet of code I have so far <?php include('include/simple_html_dom.php'); $url = 'http://www.nba.com/news/'; $html = file_get_html($url); ...
1
vote
1answer
57 views

PHP scraping thwarted by redirects

I am trying to convert a library search engine to a mobile friendly site in a php script. The plan is to scrape the results and present a simplified form, as the site only looks good in a large ...
0
votes
1answer
82 views

How To Format This Scraped Content

I'm grabbing the content from all the td's in this table with the class="job" using this. $table01 = $salary->find('table.table01'); $rows = $table01[0]->find('td.job'); Then I'm using this ...
0
votes
1answer
241 views

How Do I Scrape These Two Tables Using Simple html DOM?

I've been trying to figure out how to use php simple html dom to scrape the the td class="job" with its respective salary. I can find and scrape divs by id or class no problem, but I'm not sure how to ...
-1
votes
1answer
36 views

Delay Between WebScraping

I am using webscraping to get data from a certain website using SIMPLE PHP DOM PARSER CLASS There are few problems i am facing. There are two websites which are returning an error HTTP 403 forbidden ...
0
votes
2answers
73 views

How to scrape content from the simpleXML_Element_Object?

I am trying to scrape the contents from the Information Box of wikipedia on the right hand side of any wikipage. I am using DOMXpath to scrape the contents. On this link's Information box(on the ...
1
vote
1answer
454 views

Using Simple HTML DOM to Scrape?

Simple HTML DOM is basically a php you add to your pages which lets you have simple web scraping. It's good for the most part but I can't figure out the manual as I'm not much of a coder. Are there ...
0
votes
0answers
102 views

How to use DOM and XPATH in PHP to scrape content associated with css IDs/CLASSes in parsed tags

I'm in over my head, but that hasn't stopped me from getting the job done before. Seeking suggestions/examples to do this: 1) For any website URL provided: 2) obtain a list of all HTML tags, ...
0
votes
3answers
243 views

How to scrape XML with Python?

I am trying to parse the following XML with Python. I am using: thumbnail_tag = dom.getElementsByTagName('media:thumbnail')[0].toxml() This selects the first one. I know I can change the [0] to [1] ...
-1
votes
1answer
64 views

How to scrape relative images

If i look at Amazon Button to add items to lists on their site - you can see it here: http://www.amazon.co.uk/wishlist/get-button How does it work? I'm pretty sure it scrapes the page somehow but ...
0
votes
0answers
97 views

BeautifulSoup: Skip html element

I have the following html structure: This is only a section of it but I think this snippet is good enough to explain my problem. <tr> <td> Color Digest </td> <td> AgAkAZwCJgMZ ...
2
votes
2answers
203 views

DOM Scrape not working PHP

I was just wondering why this isnt working for me. What i want to do is strip out the m4v file. I have a similar script working for images on my site that will strip the image, upload to dir and ...
1
vote
2answers
163 views

Get previous element of a different type with PHP Simple Html Dom?

Hoping this is possible with Simple Html Dom, I'm scraping a page that looks like this: <h5>this is title 1</h5> <img> <img> <img> <h5>this is title 2</h5> ...
2
votes
1answer
177 views

Xpath reverse searching

Is there a way, when using DOM_Document Xpath to search in reverse (from the end of the page moving up instead of from the top down?) If so, how would I do this? I am doind a scrape of a web site. ...
0
votes
2answers
517 views

Extract plaintext within Div that includes other dom elements but not within any tags

I'm trying to extract some plain text that isn't wrapped in any tags using PHP. Best way to explain is to show; <div> <span>Hello</span> THIS IS THE TEXT I WANT TO ...
0
votes
1answer
410 views

PHP DOMDocument Error Handling Problem

I'm having trouble trying to write an if statement for DOM that will check if $html is blank. However whenever the html page does end up blank, it just removes everything that would be below DOM ...
2
votes
1answer
1k views

Stuck selecting classes or id's using PHP Simple HTML DOM Parser

I'm trying to select either a class or an id using PHP Simple HTML DOM Parser with absolutely no luck. My example is very simple and seems to comply to the examples given in the ...