I found a script that is used to scrape Ask.com "related search" terms, it worked well until Ask.com changed it's user interface. The author of the script told me I needed to change the regular expression to get it to work again. The code is here The output would be something similar to this Here's a youtube video of the guy building the script If anyone has any suggestions, it would be greatly appreciated. Thanks in advance, ED
Change: preg_match_all("/ec:'(.+?)'}\)\">(.+?)<\/a><\/td>/", $data, $keywords); PHP: To: preg_match_all("/ec:'(.+?)'}\)\"[^>]+>(.+?)<\/a><\/td>/", $data, $keywords); PHP: