Cartoon Avatar Generator

Avatars are widely supported by blog platforms, web forums, and social networking sites. Simply put, an avatar is a virtual representation of someone, such as a picture. For instance, my avatar is a small image of my face. Very creative, I know. It seems the popular trend lately is users having cartoon like avatars. When [...]

My Favorite WordPress Plugins

Subscribe to Comments – http://wordpress.org/extend/plugins/subscribe-to-comments/ WP-PageNavi – http://wordpress.org/extend/plugins/wp-pagenavi/ WP-DB-Backup – http://wordpress.org/extend/plugins/wp-db-backup/ Google XML Sitemaps – http://wordpress.org/extend/plugins/google-sitemap-generator/

Excel: VLookup Example

The original example can be found at TechOnTheNet.com. Question: I have a list of #s in column A (lets say 1-20). There is a master list in another column that may not include some of the column A #s. I want a formula in column B to say (if A1 exists in the master list, [...]

How to Disallow Direct Access to a File with PHP

Place this code at the top of your PHP script. if ( stristr( $_SERVER['SCRIPT_NAME'], basename( __FILE__ ) ) ) { exit( ‘No direct script access allowed’ ); }

Search for Text Inside of PHP Files with Vista

Problem Windows ignores text inside of PHP files because it doesn’t recognize them. This makes it very difficult to search for specific words or phrases inside of PHP files. Solution If you have Windows Search Indexing disabled, view this solution. Otherwise continue with the steps below. Perform a search on the Start Menu for “indexing”. [...]