Recent Posts
From Zero To SEO
Return To Blog Listing
Blog about web money-making techniques. Keyword research, link building, content scraping, and other SEO tips and tricks.
Recent Posts Tagged With 'curl'
Scraping Bing SERP
Bing is no exception when it comes to scraping. $result = getPage( '[proxy IP]:[port]', // get a proxy from somewhere 'http://www.bing.com/search?q=twitter', 'http://www.bing.com/', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-U...
Link building with referrer spamming
Refspam is usually treated as an old school traffic driving technique that doesn’t work anymore. Of course, there is some truth in that supposition. But see why referrer spamming is worth mentioning again. Find websites to refspam Want some free d...
Scraping Yahoo SERP
Yahoo SERP scraper is a little more difficult to implement than Google SERP scraper. Yahoo guys are mad about redirects (former blackhats?). You have to clean URLs after them. But nothing can stop you from scraping Scraper code example First time ...
PHP cURL proxy checker
Do you still read my blog? Good This time I’m going to post some juicy code that can hide your ass. Anonymity must be protected, don’t you agree? I’m not paranoid, but I use a bunch of anonymous proxies for server-side tasks. And I ch...
Live Search, Ask and Cuil SERP scraping
The SERP scraping saga continues. This time I’ll give you required regexps and URLs only. No need to copy paste code from other scraping posts. Feel free to improve regexps and comment. Live Search URL - http://search.live.com/results.aspx?q=...
Scraping Google SERP
Google SERP scraping solves many SEO problems. For example, you can monitor website ranking and scrap content from top websites. SERP scraping is just a part of SEO life ;} So, let’s scrap my friends! Simple Google SERP scraper This nice littl...
Scraping Google Hot Trends
Everybody likes hot content. That’s why Google Trends is so popular among blackhats. It says what’s hot and what’s not. So let’s scrap! Why care about trends? Traffic. If you know the keywords people use when they search, you can bring more ...
Scraping websites with PHP cURL under proxy
Scraping websites with PHP cURL is damn easy. Just do it the right way - use a proxy. Here is a simple function that does the job. Simple PHP cURL scraper <?php function getPage($proxy, $url, $referer, $agent, $header, $timeout) { ...
