晚安需要保持日历事件laravel

时间:2015-05-13 04:11:44

标签: php laravel calendar

晚安需要保持一个日历活动laravel并制作一个日历,但我不能做任何其他请Amano在此提前非常感谢你 这是我日历的代码

    <?php

$month=date("n");
$year=date("Y");
$diaActual=date("j");


$diaSemana=date("w",mktime(0,0,0,$month,1,$year))+7;

$ultimoDiaMes=date("d",(mktime(0,0,0,$month+1,1,$year)-1));

$meses=array(1=>"Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio",
"Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
?>

<!DOCTYPE html>
<html lang="es">
<head>

    <title>calendario </title>
    <meta charset="utf-8">
    <style>
        #calendar {
            font-family:Arial;
            font-size:12px;
        }
        #calendar caption {
            text-align:left;
            padding:5px 10px;
            background-color:#003366;
            color:#fff;
            font-weight:bold;
        }
        #calendar th {
            background-color:#006699;
            color:#fff;
            width:40px;
        }
        #calendar td {
            text-align:right;
            padding:2px 5px;
            background-color:silver;
        }
        #calendar .hoy {
            background-color:red;
        }
    </style>
</head>

<body>
<h1>calendario </h1>
<table id="calendar">
    <caption><?php echo $meses[$month]." ".$year?></caption>
    <tr>
        <th>Lun</th><th>Mar</th><th>Mie</th><th>Jue</th>
        <th>Vie</th><th>Sab</th><th>Dom</th>
    </tr>
    <tr bgcolor="silver">
        <?php
        $last_cell=$diaSemana+$ultimoDiaMes;
        // hacemos un bucle hasta 42, que es el máximo de valores que puede
        // haber... 6 columnas de 7 dias
        for($i=1;$i<=42;$i++)
        {
            if($i==$diaSemana)
            {
                // determinamos en que dia empieza
                $day=1;
            }
            if($i<$diaSemana || $i>=$last_cell)
            {
                // celca vacia
                echo "<td>&nbsp;</td>";
            }else{
                // mostramos el dia
                if($day==$diaActual)
                    echo "<td class='hoy'>$day</td>";
                else
                    echo "<td>$day</td>";
                $day++;
            }
            // cuando llega al final de la semana, iniciamos una columna nueva
            if($i%7==0)
            {
                echo "</tr><tr>\n";
            }
        }
    ?>
    </tr>
</table>
</body>
</html>

这是我只需要添加事件并选择日期mvc的结构但是一切都到了这里

0 个答案:

没有答案