Free Webmaster Resources

PHP Class for Handling .htpasswd and .htgroup (Member Login & User Management)

Apache is a marvelous web server that offers .htpasswd and .htgroup for controlling restricted access to your website. By help of .htaccess, they work as a member login & user management system that is so simple and easy to deploy. You can even define user groups / roles with it. Basically, .htpasswd defines pairs of …

PHP Class for Handling .htpasswd and .htgroup (Member Login & User Management) Read More »

PHP: Crontab Class to Add, Edit and Remove Cron Jobs

Provided that your user account on the server has the privileges to access crontab thus can create or remove cron jobs, you can use this PHP class to integrate crontab in your application. I created it for many of my own projects that need crontab to do scheduled jobs. It’s pretty straightforward. Don’t know what …

PHP: Crontab Class to Add, Edit and Remove Cron Jobs Read More »

PHP Class: Convert Plural to Singular or Vice Versa in English

I was trying to find a PHP function or class that can convert English words / nouns in plural form into their singular form so that wordcrow.com automatically detects and redirects plural lookup to the singular page. After a while searching on Google, I found this class. This great class (Inflector) was ported from Ruby …

PHP Class: Convert Plural to Singular or Vice Versa in English Read More »

Create Contact and Survey Forms with FormKid.com the Free Online Form Builder

I just finished creating yet another web application that may be useful to fellow webmasters, FormKid.com. It helps you create professional online web forms for your website. Check out what I created just now, a contact form for Kavoir.com. You can contact me by filling out and submitting the form from now on! Currently you …

Create Contact and Survey Forms with FormKid.com the Free Online Form Builder Read More »

How to convert .png, .gif, .bmp or .jpg images to .ico icons to make favicon.ico for your website?

Over a year ago I created this online web application Convert Hub by the help of the splendid open source image manipulation library Netpbm. Give it a try, upload an image and convert it to another format. But not just that, it’s also capable of resizing an image, rotating or flipping it. I love it. …

How to convert .png, .gif, .bmp or .jpg images to .ico icons to make favicon.ico for your website? Read More »

Yet Another Joomla Template Including Original PSD, HTML + CSS and Fonts

Face2Face is the name of this Joomla template, released free by Template Kingdom. I don’t usually use Joomla but one has to admit there has been many excellent template themes for Joomla like this one, just as there are with WordPress. I love the colors of this template: relatively light but not too bright to …

Yet Another Joomla Template Including Original PSD, HTML + CSS and Fonts Read More »

Free CSS + HTML Template: Fashion Club Website (with fonts and PSD source)

Template Kingdom is one of the best template and design sources on the Web. Other than a spectrum of website template sets for thousands of different niches and needs such as plain html templates, flash templates, css templates, joomla templates, wordpress templates and newsletter templates, they regularly releases free web templates. This round, it’s the …

Free CSS + HTML Template: Fashion Club Website (with fonts and PSD source) Read More »

Best Damn Premium WordPress Theme for Professional Blogs: THESIS

Imagine the best WordPress theme you have ever used and then triple the pleasure you enjoyed with it – that’s what Thesis can give you. Whatever your niche is, if you are ever after a powerful, beautiful WordPress premium theme well balanced between functionality and customizability with best support from the author, this is the …

Best Damn Premium WordPress Theme for Professional Blogs: THESIS Read More »

PHP: File Upload Script (HTML Form + PHP Handler Class)

It’s sometimes cumbersome to handle uploaded files — checking if it is really uploaded, moving and renaming. Why not writing all these chores into a class and make our own file upload script? First we are going to create a simple class to handle uploaded files and move them to some place we designate for …

PHP: File Upload Script (HTML Form + PHP Handler Class) Read More »

PHP: Resize Image and Store to File

While there are a lot of methods for you to resize images with php, we will be using extension gd this time. Make sure you or your hosting company has installed it in the php distribution by running <?php if (extension_loaded(‘gd’)) { // return true if the extension’s loaded. echo ‘Installed.’; } else { if …

PHP: Resize Image and Store to File Read More »

What is PHP framework & Who are the Best PHP Frameworks?

Basically, PHP frameworks are programming layers that are promoted above PHP itself and that are much easier and quicker to deploy, normalizing and packaging 80% of the routines one is expected to work on without them, such as database interfaces. Therefore they free you from the chores of coding from very scratch line by line …

What is PHP framework & Who are the Best PHP Frameworks? Read More »

Scroll to Top