Pudes usar una YUI (Yahoo User Inferface), esta libreria cuenta con DataTable, unos script que te permiten crear una tabla bastante simpatica y amigable....
http://developer.yahoo.com/yui/examples/datatable/dt_basic.html
y si queres podes obtener los datos de una base de datos... aqui esta un ejemplo que hice obteniedo los datos de una tabla en mysql con php.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Basic Example</title>
<style type="text/css">
/*margin and padding on body element
can introduce errors in determining
element position and are not recommended;
we turn them off as a foundation for YUI
CSS treatments. */
body {
margin:0;
padding:0;
}
</style>
<link rel="stylesheet" type="text/css" href="css/fonts-min.css" />
<link rel="stylesheet" type="text/css" href="css/datatable.css" />
<script type="text/javascript" src="js/yahoo-dom-event.js"></script>
<script type="text/javascript" src="js/dragdrop-min.js"></script>
<script type="text/javascript" src="js/element-beta-min.js"></script>
<script type="text/javascript" src="js/datasource-beta-min.js"></script>
<script type="text/javascript" src="js/datatable-beta-min.js"></script>
<!--begin custom header content for this example-->
<style type="text/css">
/* custom styles for this example */
.yui-skin-sam .yui-dt-liner { white-space:nowrap; }
</style>
<!--end custom header content for this example-->
</head>
<body class=" yui-skin-sam">
<h1>Basic Example</h1>
<div class="exampleIntro">
<p>A demonstration of the DataTable's basic feature set.</p>
</div>
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
<div id="basic"></div>
<script type="text/javascript" src="assets/js/data.js"></script>
<script type="text/javascript">
YAHOO.example.Data = {
bookorders: [
<?php
include("db_fns.php");
$nemonico=$_GET['nem'];
$handle=db_connect();
$query="select * from equipo_did";
$res=$handle->query($query);
while($equipo=$res->fetch_assoc()){
$result3=$handle->query("select count(*) from interfaz_did where equipo_id='{$equipo['equipo_id']}' and estado_id='9'");
$libres=$result3->fetch_assoc();
$libres=$libres['count(*)'];
echo '{Nodo:"'.$equipo['nodo_nem'].'", Nombre: "'.$equipo['nombre'].'", Modelo:"'.$equipo['modelo'].'", IP_Gestion: "'.$equipo['ip_gestion'].'", Gabinete:"'.$equipo['gabinete'].'", Energia: "'.$equipo['energia'].'", Puertos_Libres: "'.$libres.'"},';
}
?>
]
}
YAHOO.util.Event.addListener(window, "load", function() {
YAHOO.example.Basic = new function() {
var myColumnDefs = [
{key:"Nodo", sortable:true, resizeable:true},
{key:"Nombre", sortable:true,resizeable:true},
{key:"Modelo", sortable:true,resizeable:true},
{key:"IP_Gestion", sortable:true,resizeable:true},
{key:"Gabinete", sortable:true, resizeable:true},
{key:"Energia", sortable:true,resizeable:true},
{key:"Puertos_Libres", sortable:true,resizeable:true}
];
this.myDataSource = new YAHOO.util.DataSource(YAHOO.example.Data.bookorders);
this.myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSARRAY;
this.myDataSource.responseSchema = {
fields: ["Nodo","Nombre","Modelo","IP_Gestion","Gabinete","Energia","Puertos_Libres"]
};
this.myDataTable = new YAHOO.widget.DataTable("basic",
myColumnDefs, this.myDataSource, {caption:"DataTable Caption"});
};
});
</script>
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
</body>
</html>