Changeset 16236


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

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16235 r16236  
    7979                                                var Month=date.getMonth();
    8080                                                <?php
    81                                                 $sqlSched=mysql_query("SELECT*FROM schedule");
    82                                                 while($rowSched=mysql_fetch_array($sqlSched))
     81                                                $sqlSched1=mysql_query("SELECT*FROM schedule");
     82                                                while($rowSched1=mysql_fetch_array($sqlSched1))
    8383                                                {
    84                                                         $timestamp=strtotime(<?php echo $rowSched['fStart']; ?>);
     84                                                        $timestamp1=strtotime(<?php echo $rowSched1['fStart']; ?>);
    8585                                                ?>
    86                                                         if(Year+""+Day+""+Month==<?php echo date('Ydm',$timestamp); ?>)
     86                                                        if(Year+""+Day+""+Month==<?php echo date('Ydm',$timestamp1); ?>)
    8787                                                        {
    8888                                                                alert('wa');
     
    110110                                                        var lines = [];
    111111                                                        <?php
    112                                                         $sqlSched=mysql_query("SELECT*FROM schedule");
    113                                                         while($rowSched=mysql_fetch_array($sqlSched))
    114                                                         {
    115                                                                 $timestamp=strtotime(<?php echo $rowSched['fStart']; ?>);
     112                                                        $sqlSched2=mysql_query("SELECT*FROM schedule");
     113                                                        while($rowSched2=mysql_fetch_array($sqlSched2))
     114                                                        {
     115                                                                $timestamp2=strtotime(<?php echo $rowSched2['fStart']; ?>);
    116116                                                        ?>
    117                                                                 if(year+"-"+day+"-"+month==<?php echo date('Y-d-m',$timestamp); ?>)
     117                                                                if(year+"-"+day+"-"+month==<?php echo date('Y-d-m',$timestamp2); ?>)
    118118                                                                {
    119119                                                                        alert('zz');
Note: See TracChangeset for help on using the changeset viewer.