Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8238619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:52:29+00:00 2026-06-07T19:52:29+00:00

In the same html pageThere’re two different format of the same contain : the

  • 0

In the same html pageThere’re two different format of the same contain :

the first is :

<div class="gs"><h3 class="gsr"><a href="http://www.example1.com/">title1</a>

the second is :

<div class="gs"><h3 class="gsr"><span class="gsc"></span><a href="http://www.example2.com/">title2</a>

How to get links and titles in one code that can handle that two different format with simple_html_dom?
I’ve tried this code, but it doesn’t work :

foreach($html->find('h3[class=gsr]') as $docLink){
   $link = $docLink->first_child();
   echo $link->plaintext;
   echo $link->href;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T19:52:31+00:00Added an answer on June 7, 2026 at 7:52 pm

    From the doc there seems to be a concept of Descendant Selectors

    // Find all <td> in <table> which class=hello 
    $es = $html->find('table.hello td');
    

    Then

    foreach($html->find('h3[class=gsr] a') as $link) {
       echo $link->plaintext;
       echo $link->href;
    }
    

    Should do your job. [I’m not really aware of simple_html_dom btw 😉 Just a try]

    EDIT

    There is also nested selectors

    // Find first <li> in first <ul> 
    $e = $html->find('ul', 0)->find('li', 0);
    

    So

    foreach($html->find('h3[class=gsr]') as $docTitle) {
       $link = $docTitle->find('a', 0); //get the first anchor tag
       echo $link->plaintext;
       echo $link->href;
    }
    

    Should also work

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the exact same html sitting on two different servers. Both pages call
I'd like two different HTML elements that are at the same nesting level to
Sometimes I need to use the same html code in different templates, like: <div
I have a list of <div> s with same html but different values inside
http://tvreaderservice.info/forms/xlSheet2.php http://tvreaderservice.info/forms/xlSheet2.html Both are same page only the extension is different Internal Server Error
Rendering the same html in IE and Firefox gives me a different result because
Let's say we have two flash objects on the same html page. I want
How would I get window.location into a div of the same HTML page? Here's
Is it permissible to have both class AND id attributes in the same HTML
i have this html code: <div id=ht_key class=ht_all> <div class=ht_bottom> <div class=ht_bottom_p> <span class=ht_bottom_o>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.