• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • File List
  • Globals

survey/displaychart.php

Go to the documentation of this file.
00001 <?php
00002         require_once "classes/class.SurveyChart.php";
00003         $arr1 = unserialize(base64_decode($_GET["arr"]));
00004         $graphName = utf8_decode($_GET["grName"]);
00005         foreach ($arr1 as $key => $value)
00006         {
00007                 foreach ($value as $key2 => $value2)
00008                 {
00009                         $arr1[$key][$key2] = utf8_decode($value2);
00010                 }
00011         }
00012         $b1 = new SurveyChart($_GET["type"],400,250,$graphName,utf8_decode($_GET["x"]),utf8_decode($_GET["y"]),$arr1);
00013 ?>

Generated on Fri Dec 13 2013 09:06:38 for ILIAS Release_3_4_x_branch .rev 46804 by  doxygen 1.7.1