Muchas Gracias por vuestras aportaciones. Os dejo el código que tengo pero no funciona. Alguna ayuda por favor.
Código PHP:
/*PASO 10A: Pasar Tabla HFF a Matriz*/
$sql_hff = "SELECT id_hff,media,sinagotados,unagotado,dosomasagotados, porcentajesinagotados FROM t_hff t ORDER BY id_hff ASC";
$resultado_sql_hff = mysql_query($sql_hff) or mysql_error();
if (!$resultado_sql_hff) //Comprobacion si Consulta da Error
{
mysql_close ($connection);
header("Location: errorconsultabbdd.php");
exit();
}
//Rellenamos Matriz con el contenido de la tabla T_HFF (MySQL)
while ($result_rowhff = mysql_fetch_row(($resultado_sql_hff)))
{
$matriz_hff[][] = $result_rowhff[0];
}