PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I want this code to open up the MSN back link search for a specific url "www.sitename.com" then search that for the number of results and print that out. What is wrong with the code? I got it to work for Google.
It's your code. How about you tell us what's wrong and we'll tell you why.
Let's see... it's getting the number of results but a lot more than just that? A * in a PCRE regular expression is naturally greedy: it'll "eat" as much as it possibly can and still have a match.
If you don't know what that means you should probably learn what your code does rather than blindly use it and assume it's working correctly.