Changeset 16422 for schedule


Ignore:
Timestamp:
05/29/13 06:30:18 (11 years ago)
Author:
tanio
Message:
 
Location:
schedule
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • schedule/function/SplitDelete.php

    r16419 r16422  
    44var meas;
    55var meas2;
    6         var cnt=2;
     6 window.cnt=2;
    77        var table = document.createElement("table");
    88                table.setAttribute('id',"table2");
  • schedule/function/function.php

    r16112 r16422  
    6363                var measure;
    6464                var value;
    65                 for(var i=1;i<<?php echo $Total; ?>;i++)
     65                var checks = 0;
     66                for(var i=1;i <= cnt;i++)
    6667                {
    67                         if($('#Time'+i).val()||$('#Time'+i).val()>0)
     68                        if($('#Time'+i).val() != '')
    6869                        {
    6970                                Time=$('#Time'+i).val();
     
    7576                                selectedTime.push(Time);
    7677                                InputValue.push(value);
     78                               
     79                        }else{
     80                        checks++;
     81                       
    7782                        }
    7883                }
     84               
     85                if(checks == 0){
    7986                window.location = 'Transaction/insert.php?Time='+selectedTime+'&Source='+selectedSource+'&measure='+selectedMeasurement+'&Data='+InputValue+'&Date='+fullday+'&Date2='+fullday2;
     87        }else{
     88       
     89        alert("Please fill all the details!");
     90        }
    8091        });
    8192       
  • schedule/include/factdb.php

    r16421 r16422  
    11<?php
    2         $con=mysql_connect("localhost","root","");
     2
     3       
     4//$con=mysql_connect("localhost","root","");
    35        $con=mysql_connect("localhost","scheduletest","t3stsched");
    46        mysql_select_db("sandboxschedule",$con);
Note: See TracChangeset for help on using the changeset viewer.