esta desordenado pero es algo asi asumo tienes tu conexion:
Código PHP:
Ver original$result=mysql_query("SELECT * FROM articulo ORDER BY nro_id asc");
?><br />
<table cellspacing="0" cellpadding="3" class="tablesorter">
<thead>
<tr>
<th >Codigo: </th>
<th >cantidad: </th>
<th >Nombre: </th>
<th >Caracteristicas:</th>
<th >Monto:</th>
<th >Incorporado:</th>
<th >Operaciones</th>
</tr>
</thead>
<tbody>
<?php
{
echo "
<tr style=border1px solid #ffffff>
<th >$row[0]</th>
<th >$row[1]</th>
<th >$row[5]</th>
<th style=background-color: #ffffff; > <a href=detalles.php?id=$row[0] title=detalles>$row[2]</a></th>
<th >$row[4] </th>
<th >$row[7] </th>
echo "
</tr>";
}
?>
</tbody>
</table>