Changeset 16235 for schedule


Ignore:
Timestamp:
05/25/13 01:27:34 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16234 r16235  
    7474                                        $(document).ready(function(){
    7575                                                Graph();
     76                                                var date= new Date();
     77                                                var Year=date.getFullYear();
     78                                                var Day=date.getDay();
     79                                                var Month=date.getMonth();
     80                                                <?php
     81                                                $sqlSched=mysql_query("SELECT*FROM schedule");
     82                                                while($rowSched=mysql_fetch_array($sqlSched))
     83                                                {
     84                                                        $timestamp=strtotime(<?php echo $rowSched['fStart']; ?>);
     85                                                ?>
     86                                                        if(Year+""+Day+""+Month==<?php echo date('Ydm',$timestamp); ?>)
     87                                                        {
     88                                                                alert('wa');
     89                                                        }
     90                                                <?php
     91                                                }
     92                                                ?>
     93                                               
    7694                                        });
    7795                                        </script>
     
    91109                                                        var source=['Mrk 421','Crab','Mrk 501'];
    92110                                                        var lines = [];
     111                                                        <?php
     112                                                        $sqlSched=mysql_query("SELECT*FROM schedule");
     113                                                        while($rowSched=mysql_fetch_array($sqlSched))
     114                                                        {
     115                                                                $timestamp=strtotime(<?php echo $rowSched['fStart']; ?>);
     116                                                        ?>
     117                                                                if(year+"-"+day+"-"+month==<?php echo date('Y-d-m',$timestamp); ?>)
     118                                                                {
     119                                                                        alert('zz');
     120                                                                }
     121                                                        <?php
     122                                                        }
     123                                                        ?>
     124                                                        else
     125                                                        {
     126
    93127                                                        function LoadData()
    94128                                                        {
     
    281315                                                        }
    282316                                                        Charts();
     317                                                        }
    283318                                                        //Charts();
    284319                                                       
Note: See TracChangeset for help on using the changeset viewer.