Advertisement
mathiasbk

Untitled

Mar 17th, 2011
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.04 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. function daygenerate($sensor)
  5. {
  6. //START: includes necessary PHP files
  7. include("../conf/functions.php"); //file with functions
  8. include("../conf/settings.php");
  9. //SLUTT: includes necessary PHP files
  10. connect(); //connects to the database
  11. $todayarray = explode(":", date('d:m:Y:H:i:s'));
  12. $result = mysql_query("SELECT * FROM `tempsensor1` ORDER BY  `ID`") or die("error: " . mysql_error());
  13. $forste = 1;
  14. $forste2 = 1;
  15. echo '
  16. {
  17.     label: "Inne",
  18.     data: [ ';
  19.             while($row = mysql_fetch_array($result)){
  20.             $date=$row['dato'];
  21.             $temp = $row['temp'];
  22.             $temoto = $row['temp2'];
  23.             $dbdate = $row['dato'];
  24.            
  25.             $lastarray = explode(":", $dbdate);
  26.            
  27.             if($lastarray[0] == $todayarray[0] && $lastarray[1] == $todayarray[1] && $lastarray[2] == $todayarray[2] )
  28.             {
  29.                 if($forste == 1)
  30.                 {
  31.                    
  32.                     $forste = 2;
  33.                 }
  34.                 else
  35.                 {
  36.                     echo ", ";
  37.                 }
  38.  
  39.                 echo "[".$lastarray[3].",".$temp."]";
  40.                    
  41.             }}
  42.  
  43. echo ']},
  44.     {
  45.     label: "Inne",
  46.     data: [ ';
  47.                                                                                                              $resultt = mysql_query("SELECT * FROM `tempsensor1` ORDER BY  `ID`") or die("error: " . mysql_error());  
  48.    
  49. //echo "[".$lastarray[3].",".$tempto."]]}";    
  50.             while($row = mysql_fetch_array($resultt)){
  51.             $date=$row['dato'];
  52.             $temp = $row['temp2'];
  53.            
  54.             $dbdate = $row['dato'];
  55.            
  56.             $lastarray = explode(":", $dbdate);
  57.            
  58.             if($lastarray[0] == $todayarray[0] && $lastarray[1] == $todayarray[1] && $lastarray[2] == $todayarray[2] )
  59.             {
  60.                 if($forste2 == 1)
  61.                 {
  62.                    
  63.                     $forste2 = 2;
  64.                 }
  65.                 else
  66.                 {
  67.                     echo ", ";
  68.                 }
  69.  
  70.                 echo "[".$lastarray[3].", ".$temp."]";
  71.                    
  72.             }
  73.  
  74.              
  75.             //QUERY "
  76.             //QUERY " $result = mysql_query("SELECT * FROM `tempsensor1` ORDER BY  `ID`") or die("error: " . mysql_error());QUERY " $result = mysql_query("SELECT * FROM `tempsensor1` ORDER BY  `ID`") or die("error: " . mysql_error()); "
  77.                
  78.                
  79. }
  80. echo "]}";
  81.            
  82. }
  83. mysql_close(); //close the database connection
  84. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement