Bien, tengo una consulta típica y funciona bien, utilizo este code :
Código PHP:
$resultado89 = mysql_query("SELECT count(vob_id) as total, source
FROM vob WHERE provider_id IS NOT NULL GROUP BY source ORDER BY total DESC");
while($row = mysql_fetch_array($resultado89))
{
$total=$row["total"];
$source=$row["source"];
mysql_query ( $resultado89 , $base );
}
Código PHP:
$values = array(8, 4, 6, 2, 5, 3, 4);
$plot->setLegend(array('Lunes', 'Tue','Wed','Thu','Fri','Sat','Sun'));
Muchas Gracias de Antemano.