home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Shareware / Grafica / 3dpie / Examples / PieDataScript.txt < prev    next >
Text File  |  2004-07-07  |  2KB  |  42 lines

  1. <?php
  2. /*----------------------------------------------------------*/
  3. /*                                                          */
  4. /* Very simple PHP script to demonstrate how data can be    */
  5. /* supplied to the graph from a server side process.        */
  6. /*                                                          */
  7. /* In reality this script would be extended to dynamically  */
  8. /* acquire the data from a source such as a database.       */
  9. /*                                                          */
  10. /*----------------------------------------------------------*/
  11.  
  12. print "<!-- Pie Data --> \n";
  13. print "<!--                value,URL,Target Frame -->\n";
  14. print "data1series1: 1000,http://www.jpowered.com,_self\n";
  15. print "data2series1: 600,http://www.jpowered.com,_self\n";
  16. print "data3series1: 350,http://www.jpowered.com,_self\n";
  17. print "data4series1: 200,http://www.jpowered.com,_self\n";
  18. print "data5series1: 250,http://www.jpowered.com,_self\n";
  19. print "data6series1: 130,http://www.jpowered.com,_self\n";
  20. print " \n";
  21. print "data1series2: 300,http://www.jpowered.com,_self\n";
  22. print "data2series2: 100,http://www.jpowered.com,_self\n";
  23. print "data3series2: 500,http://www.jpowered.com,_self\n";
  24. print "data4series2: 250,http://www.jpowered.com,_self\n";
  25. print "data5series2: 130,http://www.jpowered.com,_self\n";
  26. print "data6series2: 210,http://www.jpowered.com,_self\n";
  27. print " \n";
  28. print "data1series3: 1300,http://www.jpowered.com,_self\n";
  29. print "data2series3: 700,http://www.jpowered.com,_self\n";
  30. print "data3series3: 850,http://www.jpowered.com,_self\n";
  31. print "data4series3: 450,http://www.jpowered.com,_self\n";
  32. print "data5series3: 380,http://www.jpowered.com,_self\n";
  33. print "data6series3: 430,http://www.jpowered.com,_self\n";
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. ?>