Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to parse and process HTML with PHP?

Currently I have a snippet of code that looks like this:

    echo '<div id="content">';
    echo '<b>Results:<br></b>';
    echo '<div style="margin-right: 230px; margin-top: -20px;"><center><a href="http://clubpenguincheatsnow.com/tools/itemdatabase/"><b>Back</b></a><center></div>';
    $string = explode('<br>', $string);
    foreach ($string as $row) {
        preg_match('/^(.+)\s=\s(\d+)\s=\s(\D+)\s=\s(\d+)/', trim($row), $matches);
        if (preg_match("/$query/i", "$matches[1]")) {
            echo "<a href='http://clubpenguincheatsnow.com/tools/itemdatabase/info.php?id=$matches[2]'>";
            echo $matches[1];
            echo "</a><br>";
        }
    }
    echo '</div>';

As you can see I have the div tags at the top and bottom echo '<div id="content">'; echo '</div>';. What I want to do is my PHP code to scan the output that is between the two tags, and if the text <b>Results:<br></b><div style="margin-right: 230px; margin-top: -20px;"><center><a href="http://clubpenguincheatsnow.com/tools/itemdatabase/"><b>Back</b></a><center></div> is between the tags I want my code to output "Test." Any help regarding my problem would be very helpful!

share|improve this question
2  
Use a DOM parser to handle HTML, not regex! – Brad Jun 18 '12 at 18:22

marked as duplicate by casperOne Jun 19 '12 at 18:33

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Consider the PHP Simple HTML DOM Parser for getting data from HTML.

share|improve this answer

If you feel comfortable with Regex, you can use it when the page remains pretty much static. This site can help you build regex queries. Otherwise, try and use Simple HTML DOM wherever possible as mentioned above. You'll have less chance of getting errors.

share|improve this answer

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