Blog

We do update and maintain our best blogs and provide support. We don't regularly blog anymore. But if you want to see all our posts, you're in the right place.

Search Data Using jQuery – Step By Step Guide!

Today, we will learn how to search data using jQuery. It will be very convenient for the users of your web application if you can load more data from the database without refreshing the whole page. Users don’t have to wait for those web contents such as images, text, flash files, etc. to load because […]

CSS message box examples

Today I'm going to show you CSS message box examples. We have four types of commonly used message boxes in a software/web application, I call them Info, Success, Warning, and Error boxes. Displaying message boxes in your site or application helps users a lot in identifying what they are doing or what is the result […]

How to: Date Format

If you're gonna display this date format in your page, it will look so elementary: 2010-10-20. So we got to have a format for this one. Date Format Step 1: Prepare your database configuration file. Step 2: Create and put this code inside your index.php file. you should have something like this: Date Format Step 3: If you […]

How To: Read More Link

Creating a Read More link saves space in your page especially if you want to display a list of articles. It is much better than displaying the whole content of an article. Read More Link Step 1: Prepare your database configuration file. Step 2: Create your index.php file. You should have these codes.

Where To Get Great Color Combination Ideas

I’m a web developer but I’m not that good in web design (but I’m currently working on it!). Let’s say that I’m more of the programming part of web development. Color Combination If you are just like me who find it hard to decide what color combination should be used for your web application or […]

How To Use Pipette

Pipette allows you to instantly grab the colour of any pixel on your screen and copy it in hex format, as used in CSS files, or graphic softwares, such as Adobe Photoshop. Pipette (Image from http://www.sttmedia.com) Step 1: Download Pippette here. Step 2: Unzip it and run the application. You should have something like this: The Pipette Application Step 3: Click […]

How To Highlight Table Row on Hover

In this post, we'll highlight table row on hover. Here's how it will work: Highlight the table row on hover. Show its original color on mouse out. Just add the following JavaScript code before the </body> tag: That's it! :)

How To Create Zebra Striped Tables

Zebra striped tables look good. It guides the user’s eyes when looking into your rows of data. This one useful when you have long list of data, making your app more user friendly. DOWNLOAD SOURCE CODE LIVE DEMO Step 1: Prepare your database configuration file. (I have config_open_db.php). As for the table structure, we can […]

How To Use jQuery Lightbox With A Database? Step by Step Guide!

Today I'm gonna show you how to use Lightbox while getting photo information from your database. I think this is great if you wanna have something like a dynamic photo gallery in your site. LIVE DEMO Step 1: Prepare your Database. We’ll have something like this: Step 2: Download Lightbox here. Step 3: Unzip it […]

Sample Use of JavaScript Confirm Pop Up Boxes

I'm gonna give you an example on how to use JavaScript confirm pop up boxes to delete a database record. JavaScript Confirm Pop Up Box File Name: index.php Here's how it works:1. When you run this code, you will see a delete link.2. After clicking that link, a JavaScript Pop Up Box will appear saying ""Are […]