probleem met data includen in een array
john Fuijkkink
11/10/2013 09:38:43als ik onderstaande code invoer dan werkt mijn pie perfect
echter wil in variable includen vanuit een ander script dan neemt hij de waarde niet over
waar zit mijn denk fout
include 'test.php'
$a= "$variable1";
werk dus niet
echter wil in variable includen vanuit een ander script dan neemt hij de waarde niet over
waar zit mijn denk fout
include 'test.php'
$a= "$variable1";
werk dus niet
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
$a="10.5";
$b="10.5";
$c="10";
$f="10";
$n="10";
$r=(100-$a-$b-$C-$f-$n);
$data = array("$a","$c","$f","$r","$n","$b");
// Create the Pie Graph.
$graph = new PieGraph(250,175, "auto");
$theme_class="DefaultTheme";
//$graph->SetTheme(new $theme_class());
// Set A title for the plot
// Create
$p1 = new PiePlot3D($data);
$graph->Add($p1);
$p1->SetSliceColors(array('red','blue','black','green','yellow','orange'));
$graph->Stroke();
$graph->SetBorder(0);
?>
$b="10.5";
$c="10";
$f="10";
$n="10";
$r=(100-$a-$b-$C-$f-$n);
$data = array("$a","$c","$f","$r","$n","$b");
// Create the Pie Graph.
$graph = new PieGraph(250,175, "auto");
$theme_class="DefaultTheme";
//$graph->SetTheme(new $theme_class());
// Set A title for the plot
// Create
$p1 = new PiePlot3D($data);
$graph->Add($p1);
$p1->SetSliceColors(array('red','blue','black','green','yellow','orange'));
$graph->Stroke();
$graph->SetBorder(0);
?>
PHP hulp
17/11/2024 14:21:56Kris Peeters
11/10/2013 10:57:42Ik snap de vraag niet.
Leg nog eens duidelijk uit welke code op welk .php-bestand staat.
Toon waar include 'test.php' staat.
...
Leg nog eens duidelijk uit welke code op welk .php-bestand staat.
Toon waar include 'test.php' staat.
...