Using PHP and CSS, it's very easy to create a report-style table with alternating colors on each row. This setup assumes a connection to a MySQL database (though any supported DBMS will work), and that you have already queried your database and are ready to work with the results in your php code. CSS .norm{ color:#fff; background-color:#000; } .alt{ color:#000; background-color:#fff; } PHP Code: That's all, Read More