Código PHP:
include('adodb5/adodb.inc.php');
$db=new ADOConnection('mysql');
$db->Connect("locahost","root","","taller");
$query="Select t_clientes.nombre_cliente, t_especificacion.descripcion, Count(t_equipos.id_especificación)
from t_clientes,t_especificacion,t_equipos
where t_clientes.id_cliente=t_equipos.id_cliente and t_especificacion.id_especificacion=t_equipos.id_especificación
Group by t_clientes.nombre_cliente,t_equipos.id_especificación";
$rs=$db->Execute($query);
if ($rs==false) die("failed");
$totalRows_rs =$rs->RecordCount();
//$tmprst=mysql_query($query_rsCantidades);
$header="<center><table border=1px>";
$num_field=mysql_num_fields($rs);
$body = '';
$body.="<tr>";
for($j=0;$j<$num_field;$j++){
$body.="<td>".mysql_field_name($rs,$j)."</td>";
}
$body.="</tr>";
while($row=mysql_fetch_array($rs,MYSQL_BOTH))
{
$body.="<tr>";
for($i=0;$i<$num_field;$i++)
{
$body.="<td>".$row[$i]."</td>";
}
$body.="</tr>";
}
echo $header.$body."</table>";
Código PHP:
Virtual Class -- cannot instantiate