Pure PHP
https://www.pure-php.de
PHP unconventional
Mon, 04 May 2009 08:06:29 +0000
http://backend.userland.com/rss092
en
-
Reading HTTP Status Codes with PHP
this morning I stumbled upon this blog post on phphatesme.com. The solution presented there for reading HTTP status codes works, but is not ideal
public static function getHttpCode( $url )
{
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
...
/archives/13
-
PHP rules the web
Ich hoffe, ihr verzeiht mit den provokativen Titel, aber da ist dran. PHP is the most important programming language for web applications. Das hat auch eine Studie von Evans Data Corporation, confirmed. Demnach ist PHP populärer als Ruby und Python. Nicht umsonst setzen die größten Web 2.0 Seiten, wie Facebook, Studivz, Wer-Kennt-wen, ...
/archives/11
-
Google Charts API with PHP
Ludwig Pettersson has written a class that allows you to conveniently create charts with PHP and Google Charts API.
Google Charts is a simple API that lets you create various types of charts. To create a chart, you just call a URL with specific parameters and receive an image back...
/archives/10
-
Calculating Distance with SQL
It sometimes makes work a bit easier when you calculate certain operations directly with SQL.
A practical example is the calculation of distances. In some projects I calculated this with PHP.
It can also be done directly with SQL
SELECT *, SQRT(POW(L2.lat - L1.lat, 2) + POW(L2.lng - L1.lng, ...
/archives/9
-
Alyverde via Email
The spammers are getting more and more cunning. Is this something like behavioral spam? ;-)
Bekomme immer wieder Spam Mails mit dem Schlankheitsmittel Alyverde. How do the spammers know that I have weight problems?
/archives/8
-
Sun Buys MySQL
Sun Buys MySQL AB for approximately one billion US dollars. The news is quite significant. I have already written about it hier . But what does this mean for PHP?
Could it be that more attention will be paid to Java compatibility? Possibly.
Falls Jemand diese Befürchtung hat, MySQl wird auch ...
/archives/7
-
Looking for Good PHP Blogs
I know many good English-language PHP blogs, but not a single German-language one. Can someone recommend a few? Gerne auch mittels Kommentar.
/archives/6
-
Zend_Service_SlideShare accepted into the Zend Framework incubator
John Coggeshall's Zend_Service_SlideShare ist accepted into the Zend Framework incubator. That is a good news, but why doesn't anyone wirtes a Zend_Service_Paypal?
/archives/5
-
Pure-PHP is back
After a long time of absence Pure-PHP ist back online. Now I use Wordpress, I know ist is not the best blogging solution for phpers, but it is written at least in PHP;-)
/archives/4
-
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
/archives/1