Hi
I was wondering if I might be able to get some help with a Basic Class Calender Editor.
I am self employed teacher and I teach classes at various venues. I have a website which displays the classes on for each week.i.e.
**THIS WEEK'S CLASSES
</li><br />
<li class="p3"><span class="t1"><?php echo date('l jS F Y'); ?></span>
</li>
<br />
<li class="t9"> <?php
$day = date("l");
switch($day) {
case "Monday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
case "Tuesday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
case "Wednesday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
case "Thursday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
case "Friday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
case "Saturday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
case "Sunday":
echo "English 6.30pm - 7.30pm ";
echo "<p>French 7.30pm - 9pm";
break;
}
?></li>
<li class="t9">**
---------------------------------------------------------------------------------------------------------------
The problem is that if a class is cancelled, I have to log in and take the whole website to change the whole entire page which has led to one or two problems.
I wanted to make life a little bit easier for myself by maybe using a calender for my classes so if I know a class is going to be cancelled on the day or in the advance, I can just change a calender and this will automatically update the website without me having to bring the whole thing down to update it? Similar to something like cutenews?
Any help or advice would be appreciated
Thank you
Redapple