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 </td>
    <td> Text 2 </td>
    <td> Text 3 </td>
    <td> <a href="linkhere1">  Text 131</a> </td>
  </tr>
  <tr class="A2"> 
    <td> Text 4 </td>
    <td> Text 5 </td>
    <td> Text 6 </td>
    <td> <a href="linkhere2">  Text 123213</a> </td>
  </tr>
  <tr class="A2"> 
    <td> Text 7 </td>
    <td> Text 8 </td>
    <td> Text 9 </td>
    <td> <a href="linkhere3.php">  Text 213213 </a> </td>
  </tr>
</table>

How to do this? I have tried:

<?
require('phpQuery.php');

$file = file_get_contents('test.txt', true);

$html = phpQuery::newDocument($file);

foreach($html->find('.A2')  as $tag) {                                           
  echo pq('td'); // problem here?
}
?>
link|improve this question

where does pq() come from – Ibu May 13 '11 at 15:35
feedback

2 Answers

up vote 3 down vote accepted

I guess you have them switched..

foreach(pq('.A2') as $tag) {
   $tds = pq($tag)->find('td');
}

To get a value from each td, you can iterate over it inside:

foreach(pq('.A2') as $tag) {
   foreach(pq($tag)->find('td') as $td) {
      // stuff
   }
}
link|improve this answer
Fatal error: Call to undefined method DOMElement::find() – user622378 May 13 '11 at 15:30
I forgot that they are pure DOMNode when iterating on them. You have to wrap with pq() again. – Thai May 13 '11 at 15:34
feedback

pq() would return a list of matching nodes (your <td> tags, in this case). You have to iterate over that list:

foreach(pq('td') as $td) {
   ... do something ...
}
link|improve this answer
How would you get the first td and second td from the list? and value? – user622378 May 13 '11 at 15:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.