Hallo,
ich habe ein kleines Problem mit jpgraph.
Ich will dynamisch werte aus der DB holen, einmal für die Beschriftung (lables) und einmal für die Punkte auf dem Radar (plot).
Versuche es wie folgt zu lösen:
Danke für tipps.
Wie lese ich die Daten richtig ein?
ich habe ein kleines Problem mit jpgraph.
Ich will dynamisch werte aus der DB holen, einmal für die Beschriftung (lables) und einmal für die Punkte auf dem Radar (plot).
Versuche es wie folgt zu lösen:
PHP-Code:
$sqlforlables = "SELECT content.subject FROM content, results where tid = '$tid' AND content.content_id = results.cid" ;
$resultforlables = mysql_query( $sqlforlables ) or die ( 'SQL Error in statment: ' . $sqlforlables . ': ' . mysql_error( ) );
while ($resultforlablesarray = mysql_fetch_assoc( $resultforlables )){
$radar->SetTitles($resultforlablesarray ['subject']);
}
$sqlforradar = "SELECT cmmi FROM results where tid = '$tid'" ;
$resultforradar = mysql_query( $sqlforradar ) or die ( 'SQL Error in statment: ' . $sql . ': ' . mysql_error( ) );
while ( $resultforradararray = mysql_fetch_assoc( $resultforradar ) ){
$plot= new RadarPlot($resultforradararray['cmmi']);
}
Wie lese ich die Daten richtig ein?
Kommentar