Bits of Brilliance: Session Five | projectMONA
The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!) via Bits of Brilliance: Session Five | projectMONA.
View ArticleComposer – PHP dependent library manager
Composer is a tool for dependency management in PHP. It allows you to declare the dependent libraries your project needs and it will install them in your project for you. Composer.
View Articlefind PHP sending spam on your server logging smtp emails sent through PHP...
Is your webserver under attack and you think it’s being generated by a domain sending SPAM using PHP? Here’s a solution to log all of the PHP mail() traffic and view it in your browser. Create a file...
View ArticleWordPress Query Exclude Featured Image – Don’t display featured image
<?php $thumb_ID = get_post_thumbnail_id( $post->ID ); if ( $images = get_children(array( 'post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image',...
View ArticleReading Mail Messages – Zend_Mail – Zend Framework
Zend_Mail can read mail messages from several local or remote mail storages. All of them have the same basic API to count and fetch messages and some of them implement additional interfaces for not so...
View ArticlePHP Chart Library with Javascript That Look Great
HighchartsPHP is AWESOME HighchartsPHP is a PHP library that works has a wrapper for the Highchart js library and it was built having in mind flexibility and maintainability. It isn’t a simple port of...
View ArticleFacebook Introduces ‘Hack,’ the Programming Language of the Future | Wired...
Facebook engineers Bryan O’Sullivan, Julien Verlaguet, and Alok Menghrajani spent the last few years building a programming language unlike any other. Working alongside a handful of others inside the...
View ArticlePHP Weather Forecast Code Widget That’s Simple and Really Easy To Use
I’ve been looking for a really simple and easy to use code widget for months now. Finally some good starting code on github written by Josh Hartman. This PHP example uses Yahoo’s Weather XML feed....
View ArticleHow to Implement Natural Sorting in MySQL – Sky Blue Sofa Blog
How to Implement Natural Sorting in MySQLPosted by Dave Rogers // December 20, 2013 // in Blog // 0 CommentsIn the programming world, Natural Sorting is taking a list of things and sorting them, well,...
View ArticleRasmus Lerdorf – Inventor of PHP
Rasmus Lerdorf Rasmus Lerdorf (born 22 November 1968) is a Danish–Greenlandic programmer and the author of the first version of the PHP web programming language. I did not develop the PHP we know...
View Article