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

  • SEARCH
  • Home
  • 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 6964475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:55:46+00:00 2026-05-27T15:55:46+00:00

DOM parsing in php works only if the HTML is perfectly tagged. I need

  • 0

DOM parsing in php works only if the HTML is perfectly tagged. I need to parse html which is not a perfect DOM. And that HTML is from remote server so i can’t change it.

<html>
 <body>
  <table>
   <tr>
    <td>
    1
    </td>
    <td>
    2
    </td></td>
   </tr>
</table>

when i parse html with this structure it gives an error. Warning: DOMDocument::loadHTML() [domdocument.loadhtml]: Unexpected end tag : td in Entity, line: 173 in C:\wamp\wwwxxxxxx on line 51

  • 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-05-27T15:55:47+00:00Added an answer on May 27, 2026 at 3:55 pm

    Tools such as tidy should be able to repair the HTML so you can use it in DOM.

    $html = "<html>
     <body>
      <table>
       <tr>
        <td>
        1
        </td>
        <td>
        2
        </td></td>
       </tr>
    </table>";
    
    $tidy = tidy_parse_string($html);
    
    $html = $tidy->html();
    $cleanHTML = $html->value;
    $doc = new DomDocument();
    $doc-> loadhtml($cleanHTML);
    

    Note: Tidy is not shipped with PHP, you would have to install the extension to use the functions

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

Sidebar

Related Questions

I'm new to DOM parsing in PHP: I have a HTML file that I'm
I'm running into memory issues with PHP Simple HTML DOM Parser. I'm parsing a
I am parsing an HTML page with DOM and XPath in PHP. I have
Does DOM API provide HTMLTitle Object that implements Node interface? document.title returns only string
I have a large nested array that I'm generating from parsing a CSV file
Can anyone tell me which one better to use for xml parsing - DOM
The HTML document which I am parsing contains some ASCII control codes. I noticed
I have created a PHP script which builds a table from an XML document
I am stuck with a semi-hard problem with 'simple html dom' (php class used
Dom parsing with PHP is a pain. Certainly if you take a look at

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.