Recently published WordPress themes and plugins
Smart Backup Plugin
Smart Backup is a complete WordPress solution for database backup and restore...
premiumAmbient Occlusion Theme
Ambient Occlusion is a clean and warm theme, with a brown/cocoa colour...
freeWordPress Theme: Cyanide
This theme has originally been created for an offshore client. The theme...
freeWordPress Theme: Clear Apple
Clear Apple is a clean magazine theme, no thumbnails for posts, wide...
freeOn the blog
Recommended
Currently Exploring
formFrom a rushed release to a refined plugin! Get Jobbin now and turn your WordPress installation into a real job board. The new 0.2.2 version brings an application form and many UI tweaks for better usage and general accessibility. Two years ago, I needed a job plugin, and there was only one free plugin for WordPress. I did the job...
When you have a form on a web page, you’ll most likely find the need to validate the values a user enters. Client-side validation has advantages for the server, the user and the developer. Validating forms on the client side lightens the load on the server and allows for you to format data before it is sent for processing. Because...
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...