Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. include('simple_html_dom.php');
  3. $html = file_get_html('websitethatincludesnames.htm');
  4. foreach($html->find('td') as $e)
  5. $rawText = $e->outertext;
  6. $pageText = strip_tags($rawText);
  7. echo $pageText;
  8. ?>