Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
68 views

how to get all text of html file inside two specific keywords

I have a html file and two keywords . now i want to get all text which resides inside those two key words. should i use regex ?? i want to take those two keywords as input . It will be helpful if you ...
4
votes
1answer
175 views

jsoup second element instead of first()

I have translated the PHP Simple HTML DOM query: $article->find('td[id$=tdDescription] div a', 1)->plaintext; to the jsoup query: resultRow.select("td[id$=tdDescription] > div > ...
3
votes
1answer
40 views

html dom parse - can i find only file types?

While parsing the contents of a page I want to just list images, but, would rather find them by file extension as I might only want jpg and not png for example. I know I can do this to list all ...
3
votes
3answers
985 views

PHP HTML DOM Parser

I'm looking into HTML DOM parsers for PHP. I've found PHP Simple HTML DOM Parser. Are there any others I should be looking at?
3
votes
2answers
364 views

CakePHP: Embed CTP filename and path in views and elements

I'm looking for an elegant way to make a bit of jquery aware of the filename and path of the ctp file containing a given dom selection. I'm using simple_html_dom to write changes to template flies via ...
3
votes
2answers
374 views

Looking for java html parser like simple html dom in PHP

I am Looking for java html parser like (I know java well vs my bad php - in this way i want understand how html parser works) simple html dom in PHP. thanks
2
votes
2answers
47 views

simple html dom immediate child

How can i get only the inner text of the 'a' element with text "Title"? I'm trying with "$html->find('#someid p > a')" but it returns all 'a' elements. <div id="someid"> <tr>... Same ...
2
votes
1answer
122 views

Traversing table rows until a known element using PHP Simple HTML Dom parser

Ok im trying to build an xml feed from this HTML table using PHP Simple HTML DOM Parser. <table> <tr><td colspan="5"><strong>Saturday October 15 ...
2
votes
1answer
129 views

PHP: simple_html_dom - how to find elements that are NOT in a certain class?

I'm using simple_html_dom in PHP to get all A-tags inside a html page. But some tags are inside a div that should be ignored. I guess I need something like : $htmldom->find("!div[class=blabla] ...
2
votes
1answer
136 views

Retrieve contents of consecutive nested <div> with simple_html_dom

how to use simple_html_dom get each value aaa,bbb,ccc,ddd ? Thanks. The HTML structure: <body> <div> <div> <div> <div> aaa ...
2
votes
2answers
112 views

Parsing html page in php

Today when I was parsing one page with Simple HTML DOM parser I didn't get any result. So I thought, that it must be strange. So I went to see HTML code written there. I found that there's many ...
2
votes
1answer
329 views

Using PHP Simple HTML DOM Parser for Google App Status

I wanted to use PHP Simple HTML DOM Parser to grab the Google Apps Status table so I can create my own dashboard that will only include Google Mail and Google Talk service status, as well as change ...
2
votes
1answer
342 views

Removing nested tags with simpleHTML

I'm trying to use simple_html_dom to remove all the spans from a snippet of HTML, and I'm using the following: $body = "<span class='outer' style='background:red'>x<span class='mid' ...
1
vote
0answers
18 views

DOM Manipulation in Wordpress (and elsewhere) using php

I'm quite new to the DOM manipulation world and I would like to get a head start in order to avoid common errors. I am looking for the most efficient way to manipulate content generated by ...
1
vote
1answer
145 views

Simple HTML Dom: How to remove elements?

I would like to use Simple HTML DOM to remove all images in an article so I can easily create a small snippet of text for a news ticker but I haven't figured out how to remove elements with it. ...
1
vote
1answer
125 views

PHP HTML DOM Parser Select alt from img tag

I am trying to pull only the alt value from the img tag using the simple php html dom parser. I cannot seem to get it to just pull the alt tag. Here is what I am using: ...
1
vote
1answer
68 views

How to get the title of an article using regex?

I want to get the title of an article from this page using regex and simplehtmldom : http://laperuanavegana.wordpress.com/about/ in this case title is : Cómo preparar SEITÁN Here is my regex : ...
1
vote
2answers
108 views

PHP: how do I convert foreign characters from simple_html_dom to UTF8?

I'm having some trouble with a string that comes from a webpage that has foreign characters in it. The string is generated by reading the webpage using the str_get_html() function and then ...
1
vote
1answer
137 views

Save page screenshot during scrapping using Simple HTML DOM

I'm wondering if there is a way to save a sreenshot of a page that is being srapped using Simple HTML DOM Parser. It seems that parser basicly usees file_get_contents to get the contetns of a given ...
1
vote
1answer
157 views

simple html dom get 2 tags for one foreach

How to call 2 tags for one foreach with simple html dom? <?php require_once("simple_html_dom.php"); $str='<img src="./1.jpg" /><span>image1</span><img src="./2.jpg" ...
1
vote
3answers
166 views

How to get the absolute image URIs with SimpleHTMLDom

I use simple_html_dom to get site's images. But sometimes, the image's link are not prefixed with the full domain URI, e.g. with http://example.com. They appear as something like ...
1
vote
4answers
497 views

Finding part with simple html dom parser by two or more attributes per one element

I would like to say, that I know, that many think, that Simple HTML DOM parser is a really bad choice for HTML parser. Still I need to use it at the moment. I read some articles where it was ...
1
vote
2answers
255 views

php, highlight search keywords without breaking anchor tags

I already did a search on Google and Stackoverflow, but I couldn't find any solution that works for me. This is what I have so far: $string = preg_replace('/'.$keyword.'/i', '<span ...
1
vote
3answers
111 views

Get text from next tag

I have a html snippet that looks like this (of course surrounded by other html): <p class="finfot3"><b>Header:</b></p> <p>Text</p> How can I get Text from this? ...
1
vote
1answer
508 views

Simple HTML DOM, finding links recurssively

I am using simple html dom to find links on a certain page using: // Find all links foreach($html->find('a') as $element) echo $element->href . '<br>'; This find all the links ...
1
vote
2answers
954 views

Using SimpleHtmlDom, how to remove and replace a specific attribute

I'm currently using this HTML DOM PARSER using php : http://simplehtmldom.sourceforge.net/ I'm confused on how to remove and replace the selected attribute href="style.css", I want to replace the ...
1
vote
2answers
879 views

Simple html dom character encoding issue

hey guys, i'm using simple html dom to retrieve content from another website, but the thing is theres a character encoding issue with the stuff retrieved using simple html dom. The characters are ...
1
vote
3answers
557 views

PHP- HTML parsing :: How can be taken charset value of webpage with simple html dom parser?

PHP:: How can be taken charset value of webpage with simple html dom parser (utf-8, windows-255, etc..)? remark: its have to be done with html dom parser http://simplehtmldom.sourceforge.net ...
1
vote
2answers
3k views

PHP Command-line scripts are ignoring php.ini and ini_set('memory_limit',…) directives

I am facing the common "Fatal error: Out of memory (allocated 30408704) (tried to allocate 24 bytes)..." PHP Fatal error. Pages served via Apache are not exhibiting this behavior. I've tried the ...
1
vote
1answer
309 views

simple_html_dom - problem not covered in manual

hello I am searching for all instances of tags with the EXACT class "hello" using simple_html_dom foreach($html->find('.hello')as $found The above doesn't quite do this because it also gives me ...
0
votes
2answers
38 views

How can I speed this up?

I have a script which I think is pretty basic scraping, call it what you will, but it takes on average at least 6 seconds...is it possible to speed it up? The $date variables are only there for timing ...
0
votes
2answers
54 views

Why is this foreach failing?

The script I am using 'gets' a html page and parses is showing only the .jpg images within, but I need to make some modifications and when i do it simply fails... This works: ...
0
votes
1answer
51 views

html DOM only scrape largest image

I have a bookmarklet which looks at a page and extracts all the images for the user to see. include('simple_html_dom.php'); function getUrlAddress() { /*** check for https is on or not ***/ $url = ...
0
votes
1answer
44 views

Simple HTML DOM parser not updating

I'm using the simple HTML DOM parser for my own template system and found a problem. Here's my markup: <div class=content> <div class=navigation></div> </div> I'm ...
0
votes
1answer
42 views

simple html dom returns weird results with some URLs

I'm using simple HTML DOM and I'm getting weird results when using it on some sites. Here is the HTML output it produces from this link ���������������� I checked the sources and it's a mess. It ...
0
votes
0answers
18 views

Fetching Multiple Divs using simple_html_dom

i am using simple_html_dom to do a deal aggregreator but i am stuck at some point. This is to crawl the website and get each div contents. <div class="c"> <div ...
0
votes
3answers
73 views

getting title of page using simple html dom?

I'm trying to get the title from an external site using simple html dom (the title of page between the TITLE tags) but it's not retrieving anything. Any ideas? $html = new simple_html_dom(); ...
0
votes
1answer
34 views

Parsing/scraping issue with simplehtmldom

I'm trying to use simplehtmldom to parse a web page with many li tags. I'd like to only extract the innertext for the specific tag <li class='ev_td_li c5'> that occurs in the following snippet: ...
0
votes
1answer
44 views

using simple_html_dom & cURL but did not get all contents of the page. How can I get?

The problem is, I get some parts of the contents but did not get the user's reviews. by Firebug I saw contents but when I checked the source codes NO contents inside HTML tags / no same HTML tags. ...
0
votes
2answers
75 views

php DOM inner TAG ( simple_html_dom )

I have this html: <h2><a href="http://.... > title</h2> How can I get the string "href"? I tried with: include('simple_html_dom.php'); $html = file_get_html('http://...'); ...
0
votes
1answer
58 views

simplehtmldom get href of a title

I have a code below which is working correctly but is missing one thing. It is not returning the value for the $item['link'] which is the href of the title. include('simple_html_dom.php'); $html = ...
0
votes
1answer
101 views

PHP - Simple HTML Dom Parser

I'm trying to retrieve some information from a website using PHP Simple HTML Dom Parser. In the website there are many tables with the class "forumborder2" and inside them i want to get some ...
0
votes
1answer
51 views

php dom scraping - best method for grabbing product prices

I'm using simpleHtmlDom to do some basic screen scraping. I'm having some problems with grabbing product prices though. Sometimes I can get it to work, sometimes I can't. Also, sometimes I'm ...
0
votes
0answers
51 views

Using next_sibling() in PHP Simple HTML DOM Library?

I have a table of data, I want to capture the text inside of the element that immediately follows a element that has a label inside with a title attribute of "label". See the table here: ...
0
votes
1answer
42 views

Finding TD Innertext, can this be simplified?

So I have a large table (701-ish rows, 19 columns). I need to extract the innertext in each td, and then I write it to a csv. The problem is, this takes forever. Doing just 100, takes 32 seconds. This ...
0
votes
1answer
110 views

php getting error from simplehtmldom when trying to get next page of url web scrape

I am trying to get the next page of the topic but it gives an error. Is there any way to avoid that error to be able to scrape the next page within that age topic? (next page goes by 20 and after is ...
0
votes
2answers
84 views

Simple PHP DOM Parser doesn't work in switch case (PHP)

I have a problem with the Simple PHP DOM Parser. I basically have to scrape a catalogue site for the images and their titles. The site is have to scrape is http://pinesite.com. I have come up with ...
0
votes
1answer
51 views

how to use simplehtmldom to parse and look for a table

So, I have this set of html table <table width=250 border=0 cellspacing=0 cellpadding=0 bgcolor=#F9F400> which has more td and tr tags with tags as well. and I have this php expression echo ...
0
votes
1answer
45 views

simple_html_dom class, What actually plaintext function returns?

I think i don't get it. I tried to parse some html page : <select name="sel"> <option value="val0">-please select me-</option> <option value="val1">some ...
0
votes
1answer
44 views

php simple html dom, parse some html between 2 html tag by id

I have a big tree, and I tried to parse some html between 2 html tag by id (between h2#ftc to h2#ftd) use simple html dom, how to do it in a right way? my code get an empty data. Thanks. require ...

1 2 3