Les dejo el codigo:
Código:
<?php
include("Clases/ConexionBD.php");
$conexion= new ConexionBD("mysql14.000webhost.com","regist");
//check if time is set in the URL
if(isset($_GET['time']))
$time = $_GET['time'];
else
$time = time();
$today = date("Y/n/j", time());
$current_month = date("n", $time);
$current_year = date("Y", $time);
$current_month_text = date("m", $time);
$next_month = mktime(0,0,0,$current_month+1,1,$current_year);
$next_month_text = date("m", $next_month);
$previous_month = mktime(0,0,0,$current_month-1,1,$current_year);
$previous_month_text = date("F \'y", $previous_month);
$next_year = mktime(0,0,0,$current_month,1,$current_year+1);
$next_year_text = date("F \'y", $next_year);
$previous_year = mktime(0,0,0,$current_month,1,$current_year-1);
$previous_year_text = date("F \'y", $previous_year);
switch($current_month_text)
{
case 1:
$current_month_text = "Enero";
break;
case 2:
$current_month_text = "Febrero";
break;
case 3:
$current_month_text = "Marzo";
break;
case 4:
$current_month_text = "Abril";
break;
case 5:
$current_month_text = "Mayo";
break;
case 6:
$current_month_text = "Junio";
break;
case 7:
$current_month_text = "Julio";
$next_month_text = "Julio";
break;
case 8:
$current_month_text = "Agosto";
break;
case 9:
$current_month_text = "Septiembre";
break;
case 10:
$current_month_text = "Octubre";
break;
case 11:
$current_month_text = "Noviembre";
break;
case 12:
$current_month_text = "Diciembre";
break;
}
$total_days_of_current_month = date("t", $time);
$events = array();
$result = mysql_query("SELECT DATE_FORMAT(diaEvento,'%d') AS day,contenidoEvento,tituloEvento FROM calendario WHERE diaEvento BETWEEN '$current_year/$current_month/01' AND '$current_year/$current_month/$total_days_of_current_month'");
while($row_event = mysql_fetch_object($result))
{
$events[intval($row_event->day)] .= '<li><span class="title">'.stripslashes($row_event->tituloEvento).'</span><span class="desc">'.stripslashes($row_event->contenidoEvento).'</span></li>';
}
$first_day_of_month = mktime(0,0,0,$current_month,1,$current_year);
$first_w_of_month = date("w", $first_day_of_month);
$total_rows = ceil(($total_days_of_current_month + $first_w_of_month)/7);
$day = -$first_w_of_month;
?>
<div id="calendario">
<table id="tabla-calendario" cellspacing="0">
<thead>
<tr><th id="mes" colspan="7"><?php echo $current_month_text;?> <?php echo $current_year;?></th></tr>
<tr>
<th>Dom</th>
<th>Lun</th>
<th>Mar</th>
<th>Mie</th>
<th>Jue</th>
<th>Vie</th>
<th>Sab</th>
</tr>
</thead>
<tr>
<?php
for($i=0; $i< $total_rows; $i++)
{
for($j=0; $j<7;$j++)
{
$day++;
if($day>0 && $day<=$total_days_of_current_month)
{
$date_form = "$current_year/$current_month/$day";
echo '<td';
if($date_form == $today)
{
echo ' class="today"';
}
if(array_key_exists($day,$events))
{
echo ' class="date_has_event"> '.$day;
echo '<div class="events"><ul>'.$events[$day].'</ul></div>';
}
else
{
echo '> '.$day;
}
echo "</td>";
}
else
{
echo '<td class="padding"> </td>';
}
}
echo "</tr><tr>";
}
?>
</tr>
<tfoot>
<th>
<a href="<?=$_SERVER['PHP_SELF']?>?time=<?=$previous_year?>" title="Año Anterior">««</a>
</th>
<th>
<a href="<?=$_SERVER['PHP_SELF']?>?time=<?=$previous_month?>" title="Mes Anterior">«</a>
</th>
<th> </th>
<th> </th>
<th> </th>
<th>
<a href="<?=$_SERVER['PHP_SELF']?>?time=<?=$next_month?>" title="Mes Siguiente">»</a>
</th>
<th>
<a href="<?=$_SERVER['PHP_SELF']?>?time=<?=$next_year?>" title="Año Siguiente">»»</a>
</th>
<tr><th id="ocultar" colspan="7"><a href="#">Ocultar Calendario</a></th></tr>
</tfoot>
</table>
</div>