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

I’m talking here about extracting latest posts to a different site. I’m also assuming that the databases are on the same server. So here is the script: <?php // connect to the database server mysql_select_db('forum'); // run The query $results = mysql_query("SELECT * FROM phpbb_topics ORDER BY topic_time DESC LIMIT 10"); if ($results) { while($rand = mysql_fetch_array($results)) { echo "<div>";...

It took me a while to try and rephrase the title, but to no avail. Using the image.php script from my last article, I will read database entries and replace all tags with clickable thumbnails. All you need to do is have a database entry with an tag. Read the database (I’m sure you know how to do this): <?php...

Ever since I discovered PHP I tried to simplify everything by splitting files into most used parts and using include() to add them, reading files from directories and generating galleries on the fly, or by using many tricks to make my developer life easier. Today, I’ll show you how to use PHP and GD library to show perfectly cropped thumbnails...

Method 1. This is the simplest way to list files in a folder: <?php $dir = "."; $dh = opendir($dir); while (($file = readdir($dh)) !== false) { echo $file.'<br />'; } closedir($dh); ?> In order to add links to the files in the folder, we modify the code as below. Warning, this might pose some serious security threats if publicly...

I’ve recently messed up a script installation and the admin user and password did not import successfully into the database. I have inserted the admin user manually, but I had no idea what the password looked like using md5 encoding. So I wrote a simple script creating an encoded password, and I imported the resulting value into the database. Pretty...