Saturday, October 27, 2012

6 Differences Between Table and Div For Website Layout

Some people use table for their website layout because it is easier to do. While using div needs more knowledges, especially about css. Here are the difference between table and div layout. No Statement table Div Comments 1 ease of use easier harder The concept of table...

Friday, October 19, 2012

Database Normalization Steps From 1NF to 3NF

The goal of a relational database design is to generate a set of relation scheme that allow us to store informastion easily. One approach is to design scheme that are in an appropriate normal form (silberschatz, H., 1991)We have to normalize the database in order to...

Wednesday, October 17, 2012

XHTML Transitional, Strict and Frameset

If we're talking about Web Standard, then we have to know about XHTML. XHTML divided into 3 models : transitional, strict, and frameset. Let's start with transitional and strict models. For anyone who wants to move to XHTML technology, the easier way is to move to XHTML transitional,...

Tuesday, October 16, 2012

Create Dynamic Drop Down Menu from Database

I assumed that you have already know about PHP and mysql. Now we are talking about the algorithm to create a recursive menu. After getting the data from the database, we need to 'echo' the value in the specific HTML format with id and class name like...