First steps within the Zend Framework

The “old” web search API from Yahoo is deprecated: They discontinued the service in April 2011. For further details, please read the Deprecated Services blog post (there is a new API system). Setup a quick Yahoo Search page within a few minutes! A few days ago the “old” Google web search API has stopped working [...]

Tutorial: FTP Upload via cURL

FTP hosting is often much cheaper than regular web hosting. The upload with an ftp client is for sure the most common way, but could be a problem for people behind a firewall or without enough rights (capabilities) to install a FTP client. For those a upload via a web form is the best solution. [...]

Uploading files with cURL?

While testing some code to find a different way to upload files with PHP, I checked a lot of websites to get the information I need to understand cURL better. Today I found this article: Using the CURL library in PHP With only a few examples it was clear for what usage I need cURL [...]

Parse html with PHP preg_match_all

For the most of the PHP developer which are using preg_match or preg_replace frequently is the function preg_match_all a smaller advantage, but for all others it’s maybe hard to understand. The biggest difference between preg_match_all and the regular preg_match is that all matched values are stored inside a multi-dimensional array to store an unlimited number [...]