Advertisement
dehqan

Untitled

Sep 8th, 2011
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. var chart;
  4.  
  5. var chartData = [ <?
  6. while($row = mysql_fetch_object($querya)){
  7. ?>
  8. {date:JSON.parse('<?= json_encode(array('country' => $row->year."-".$row->month."-".$row->day));?>').country , usage:JSON.parse('<?= json_encode(array('usage' => '$row->usage'));?>').usage},
  9.  
  10. <?
  11. $total = $row->usage + $total;
  12. $plus=count($row->usage ) + $plus;
  13. }?>]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement