
Kod
Warning: include_once(LabChartsBar.php) [function.include-once]: failed to open stream: No such file or directory in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 2
Warning: include_once() [function.include]: Failed opening 'LabChartsBar.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 2
Warning: include_once(LabChartsLine.php) [function.include-once]: failed to open stream: No such file or directory in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 3
Warning: include_once() [function.include]: Failed opening 'LabChartsLine.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 3
Warning: include_once(LabChartsPie.php) [function.include-once]: failed to open stream: No such file or directory in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 4
Warning: include_once() [function.include]: Failed opening 'LabChartsPie.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 4
Fatal error: Class 'LabChartsPie' not found in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 6
Warning: include_once() [function.include]: Failed opening 'LabChartsBar.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 2
Warning: include_once(LabChartsLine.php) [function.include-once]: failed to open stream: No such file or directory in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 3
Warning: include_once() [function.include]: Failed opening 'LabChartsLine.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 3
Warning: include_once(LabChartsPie.php) [function.include-once]: failed to open stream: No such file or directory in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 4
Warning: include_once() [function.include]: Failed opening 'LabChartsPie.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 4
Fatal error: Class 'LabChartsPie' not found in /home/infekhsm/domains/infek.pl/public_html/wykres/examples.php on line 6
Plik examples.php wygląda tak:
<?php include_once('./LabChartsBar.php'); include_once('./LabChartsLine.php'); include_once('./LabChartsPie.php'); $LabChartsPie = new LabChartsPie(); //$LabChartsPie->setType('p3'); $LabChartsPie->setTitle('Udziały w pewnej firmie'); $LabChartsPie->setSize('400x200'); $LabChartsPie->setColors('D9351C'); $LabChartsPie->setLabels('Marek|Franek|Michał|Lech|Jarosław|Grzesiek|Tomek'); $LabChartsBar = new LabChartsBar(); $LabChartsBar->setSize('400x200'); $LabChartsBar->setTitle('Przychody w poszczególnych miesiącach'); //$LabChartsBar->setColors('D9351C|FAAC02|79D81C|2A9DF0|02AA9D'); $LabChartsBar->setLabels('Styczen|Luty|Marzec|Kwiecien|Maj'); $LabChartsBar->setBarStyles(40); $LabChartsBar->setAxis(10); $LabChartsBar->setGrids(10); $LabChartsLine = new LabChartsLine(); $LabChartsLine->setColors('D9351C'); $LabChartsLine->setSize('400x250'); $LabChartsLine->setTitle('Zyski w poszczególnych miesiącach'); $LabChartsLine->setAxis (20, 'Sty||Mar||Maj||Lip||Wrz||Lis||Sty||Mar||Maj||Lip|'); $LabChartsLine->setGrids (10); ?> <html> <head> <title>Laboratorium kodu - LabCharts</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine"> <style> body { font-family: 'Tangerine', serif; font-size: 48px; } </style> </head> <body> <p>Wykres kołowy:</p> <img src="<?=$LabChartsPie->getChart()?>"> <p>Wykres słupkowy:</p> <img src="<?=$LabChartsBar->getChart()?>"> <p>Wykres liniowy:</p> <img src="<?=$LabChartsLine->getChart()?>"> </body> </html>
Dodam że wszystkie pliki są w jednym folderze