Recently published WordPress themes and plugins

Smart Backup Plugin


Smart Backup is a complete WordPress solution for database backup and restore...

FREE+

Ambient Occlusion Theme


Ambient Occlusion is a clean and warm theme, with a brown/cocoa colour...

FREE+

WordPress Theme: Shiny


Shiny 2.0 is a fresh WordPress theme hot off the press! Some...

FREE+

WordPress Theme: Cyanide


This theme has originally been created for an offshore client. The theme...

FREE+

Inception Theme


On the foundation of Whiskey Air Theme, I have built a new...

FREE+

Whiskey Air Theme


I now give you Whiskey Air, a simple, imageless theme, compatible with...

FREE+

WordPress Theme: Clear Apple


Clear Apple is a clean magazine theme, no thumbnails for posts, wide...

FREE+

WordPress Theme: Blizzard


A new theme based on some old CSS template of mine and...

FREE+

WordPress Theme – X5 Turbo


X5 is the successor of X4.1 and has some small improvements over...

FREE+

On the blog

Recommended

CodeCanyon Referral Follow Turbosquid Hostgator Affiliate 2 Hostgator Affiliate 1


Currently Browsing

PHP

Having a rough time as a web designer? I wrote a PHP script suite to help you in your every day quest of taking over the web. Check it out at Butterfly Media Romania web site.

I’ve been frantically working over the past two weeks on a new version of Butterfly Organizer, which is due to release on the 15th of April. So I’ve been over my head and had not time to write on the blog. Some updates will come soon, I intend to reconsider the SezWho plugin and write a review of it, as...

As I continued my quest into updating all my web sites and scripts for the big update, I tried to use an easy method to debug my PHP scripts. So, I modified my php.ini file and changed the following lines: error_reporting = E_ALL display_errors = On display_startup_errors = On log_errors = On track_errors = On I actually don’t know about...

There are 2 ways to pass variables in PHP: “GET” and “POST“. You might recognize these from the form tag (<form method="GET">). What’s the difference? GET passes the variables in the URL, and POST passes the variables hidden. Ever get the error “resubmit POST data” when you click back on your browser? This is POST in action: it is asking...

I told you earlier about the PHP5 upgrade. I will go deeper into the register_globals feature and some issues about it. The register_globals feature is off by default in PHP5 and deprecated and removed in PHP6. Relying on this feature is highly discouraged. The most controversial change in PHP was when the default value for the PHP feature register_globals went...