Tagged Questions

6
votes
2answers
2k views

Scraping Library for PHP - phpQuery?

I'm looking for a PHP library that allows me to scrap webpages and takes care about all the cookies and prefilling the forms with the default values, that's what annoys me the most. I'm tired of ...
3
votes
1answer
73 views

How do I use terminal to install plugins and libraries for PHP (MAMP)?

Can you walk me through the installation of a library for php, specifically what each terminal command does? I have been learning web development for 6 months and it is time I need the console / ...
3
votes
3answers
186 views

Help with PHP Select Query: WHERE x=y AND a=b AND IF (c != d) Possible?

Ok, here we go... I have a select query accessing a very abstract database. My current query looks through 5 tables (using 6 "AND"'s to do it... not fun) and returns whatever records match all ...
2
votes
1answer
55 views

phpQuery: Traversing each element

Right now I access each row and cells of a table like this: $f = phpQuery::newDocumentFile('test.html'); // access row #1 $o = $f['#id tr:eq(0)']; $d = phpQuery::newDocument($o); // get cells from ...
2
votes
2answers
512 views

How to PhpQuery works? Trying to get the value of <title> tag

I'm new to phpQuery(http://code.google.com/p/phpquery). I need to achieve the simple task of getting the content of the HTML TITLE tag of a webpage. In this case I'm trying to get the title content of ...
1
vote
1answer
39 views

Using phpQuery for data abstraction

i have to fetch some data from a web page. i want to use phpQuery for that.when i try for the example require_once('phpQuery/phpQuery.php'); phpQuery::browserGet('http://www.google.com/', ...
1
vote
1answer
48 views

a php implementation of a certain jquery script. Finding a parent of p element with text of certain length

I found this library, php query, and I wanted to know how I can utilize this jquery: var source = $('p:not(:has(iframe))').filter(function(){ return $(this).text().length > 150;}) ...
1
vote
1answer
48 views

phpquery equivalent that uses MXLReader?

phpQuery uses the DOM extension. Is there an equivalent to phpQuery that uses XMLReader(with at least some of the functionalities in phpQuery)?
1
vote
1answer
296 views

Can I use google web cache to programatically open a page?

I'm using snoopy and phpQuery. If I have a URL, i'd like to open up the cached version of that url on google. Any date, doesn't matter, as long as a version exists i'll take it. Any ideas on how to ...
1
vote
1answer
166 views

phpQuery: how do i generate an array of the items from a list (ul) tag?

From the following code: <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> How do I create an array using phpQuery - array( 'Coffee', ...
1
vote
2answers
406 views

How to use Foreach with PhpQuery?

I'm trying to parse some html with PhpQuery, but it is not easy for me... I need to extract only the URL(href tag) to an array but it is not working. Please see this code for example purposes only: ...
1
vote
5answers
457 views

Replace element using phpquery (php version of jquery)

I want to replace all <span> tags with <p> using phpquery. What is wrong with my code? It finds the span but the replaceWith function is not doing anything. $event = ...
0
votes
0answers
48 views

PhpQuery: How can i use getJSON?

I want to use PhpQuery for getting JSON data, but i always obtain an internal error: NetworkError: 500 Internal Server Error Test extracted from ...
0
votes
2answers
33 views

Select first DOM Element of type text using phpQuery

Let's say i have this block of code, <div id="id1"> This is some text <div class="class1"><p>lala</p> Some markup</div> </div> What I would want is only the ...
0
votes
2answers
43 views

Fetch data using phpquery

i have to fetch data from web page using phpquery and i have already used a example this following is the code... <?php require_once(dirname(__FILE__) . "/phpQuery.php"); ...
0
votes
5answers
101 views

Decimal number with comma or point after first number

EDIT 2 Thank you all for your help! By fusing the answers and some other forum post I managed to solve it by: $string = strip_tags($oNode['div.item-prijs']); $array = str_split($string,1); ...
0
votes
1answer
82 views

Is it possible to speed up phpQuery?

I am trying to read a 12MB+ file which has a large HTML table which looks like this: <table> <tr> <td>a</td> <td>b</td> ...
0
votes
1answer
108 views

[php]remove html code from string

in this variable: $this->item->text I have this string: <!-- JoomlaWorks "Disqus Comment System for Joomla!" Plugin (v2.2) starts here --> <div class="itp-fshare-floating" id="itp-fshare" ...
0
votes
1answer
66 views

Modify html via php

Hello I'm doing this to add a string after a div in an html page with jquery: <a href="javascript:void(0);" onclick="PrependItemsToList();">Prepend items</a> <script ...
0
votes
1answer
47 views

How use xpath queries in PHPQuery?

I'm looking for an example code how use xpath phpQuery. I read the wiki-pages but not found any thing. thanks in advance.
0
votes
3answers
75 views

Parsing html with phpQuery : how to handle C++ code inside a pre tag?

In the database I have some code like this one Some text <pre> #include <cstdio> int x = 1; </pre> Some text When I'm trying to use phpQuery to do the parsing it fails because ...
0
votes
1answer
183 views

phpQuery - make php script wait until iframe content has loaded

I'm using the phpQuery library (http://code.google.com/p/phpquery/) to parse web pages but have stumbled across a problem getting sites that use Ajax to display all the content. I have worked out ...
0
votes
2answers
150 views

Alternative to scraping data with phpQuery? (Or, why does it error out every 6,000 scrapes?)

I have a PHP script that scrapes data from a government web site and puts it in a MySQL database for easier searching. It works great, but every 6,000 some rows, it stops being able to scrape ...
0
votes
1answer
35 views

phpQuery ignores part of an imported file

the following code: <? require_once "phpQuery.php"; $dom = phpQuery::newDocument( "<head></head><body>this is ignored</body>" ); echo nl2br( htmlentities( $dom ) ); ...
0
votes
2answers
487 views

phpQuery - get the values from each td

I am using phpQuery to get the data from elements. Im trying to get the values from first td, seconds td and href link from each tr. <table> <tr class="A2"> <td> Text 1 ...
0
votes
2answers
434 views

Problem with using PHPQuery

I trying to use PHPquery to scrape web-page (free-lance.ru) Equiv code in Simple HTML Dom is working: include('simple_html_dom.php'); $shd = str_get_html($html); $projects = array(); $i = 0; ...
0
votes
1answer
141 views

PhpQuery and replaceWith, How to?

I'm using PhpQuery and I need to replace an "iframe" for another tag The html file have an Iframe <div id="content"> <div class="pad3"></div> <iframe ...
0
votes
1answer
422 views

Concatenate HTML tables with PHP DOMDocument

I have a whole bunch of large HTML documents with tables of data inside and I'm looking to write a script which can process an HTML file, isolate the tags and their contents, then concatenate all the ...
0
votes
2answers
66 views

Current line-/col-number in phpQuery?

How can I get the line-/col-number of the current element in phpQuery? I use the phpQuery framework for a validation tool with custom errors. Thanks!
0
votes
2answers
232 views

Fix incorrectly displayed encoding on an html document with php

Is there a way to fix the characters that display improperly after running this html markup through phpquery::newDocument? There are slated double quotes around -Classics with modern Woman- in the ...
0
votes
1answer
439 views

Selecting peculiar XML tags with phpQuery

phpQuery is a really nice tool which has helped me tremendously in the past parse well-formed XHTML and XML documents, but I have recently run into a problem trying to select elements that have colons ...
0
votes
2answers
46 views

How do I prevent the query class from processing the question marks in my text strings?

Rather new to php, so sorry if this seems stupid. I'm really copying a lot of this from previously written code from other developers at my company. The way we run a query is basically like this: ...
0
votes
1answer
220 views

jQuery filtering and traversing (phpQuery)

I am trying to parse data off a page using phpquery(almost same as jquery), I need code to get these 2 things, B K Guda Association Hall and Main Road, C Type Colony, B K Guda other ...
-1
votes
1answer
60 views

Can I POST from one PHP script to another using phpQuery, or if possible, just plain PHP?

There are numerous examples of being able to POST a variable from one PHP script to another. I want the first script to POST to the second script, but to keep the first script still running. The ...