Changeset 16016


Ignore:
Timestamp:
05/22/13 15:02:00 (11 years ago)
Author:
tanio
Message:
 
Location:
schedule
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16015 r16016  
    290290                                                        xmlhttp.send();
    291291                                                        $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
     292                                                        $('#saving').load('function.php?day='+day+"&month="+month+"&year="+year);
    292293                                                       
    293294                                                       
  • schedule/function/function.php

    r16013 r16016  
     1 <div id="saving">
    12 <script type="text/javascript">
    23
     
    1617        var fullday2=day2+'-'+month2+'-'+year2;
    1718       
    18        
    1919        <?php
    20        
    21        
    22        
    23                 $cntsource=mysql_query("SELECT COUNT(*) as `SourceID` FROM source");
    24                 $rowcnt=mysql_fetch_array($cntsource);
    25                 $Total= $rowcnt['SourceID'];
    26         ?>
    27         $('#save').click(function(){
    28                 var InputValue = [];
    29                 var selectedSource = [];
    30                 var selectedTime = [];
    31                 var selectedMeasurement = [];
    32                 var Time;
    33                 var Source;
    34                 var measure;
    35                 var value;
    36                
    37                 <?php
    3820 if($_GET['day'] || $_GET['month'] || $_GET['year']){
    3921 
     
    5941        var fullday=day+'-'+month+'-'+year;
    6042        <?php    }  ?>
    61                
    62                
     43        <?php
     44       
     45       
     46       
     47                $cntsource=mysql_query("SELECT COUNT(*) as `SourceID` FROM source");
     48                $rowcnt=mysql_fetch_array($cntsource);
     49                $Total= $rowcnt['SourceID'];
     50        ?>
     51        $('#save').click(function(){
     52                var InputValue = [];
     53                var selectedSource = [];
     54                var selectedTime = [];
     55                var selectedMeasurement = [];
     56                var Time;
     57                var Source;
     58                var measure;
     59                var value;
    6360                for(var i=1;i<<?php echo $Total; ?>;i++)
    6461                {
     
    8077        });
    8178 </script>
     79 </div>
Note: See TracChangeset for help on using the changeset viewer.