diff --git a/input.php b/input.php --- a/input.php +++ b/input.php @@ -1,4 +1,12 @@ - + @@ -9,6 +17,14 @@ margin:auto; font-family: sans-serif; } + #savedBox { + width: 15em; + padding: 1em; + border: 1px solid #000; + float:right; + background: #DDD; + font-size: .8em; + } #header { text-align: left; background: rgb(220,220,220); /* IE fallback */ @@ -218,6 +234,10 @@ jQuery('#scheduleForm').resetForm(); }); + jQuery('#scheduleName').hover(function() { + jQuery(this).val(''); + }); + }); @@ -235,17 +255,17 @@
-

- Saved Schedules: -

- $schedule) - echo "Saved Schedule $key
"; -else - echo "No saved schedules!
"; + 0){ + echo '

Saved Schedules:

'; + foreach($_SESSION['saved'] as $key => $schedule){ + $sch = unserialize($schedule); + echo "#" . ($key + 1) . " - " . $sch->getName() . "
"; + } + echo '
'; +} ?>

@@ -253,10 +273,9 @@ else
- - + @@ -300,7 +319,6 @@ else
  • Check the saved schedule function. After input my default schedule, the output was the same as that of the demo. However, when I went back and clicked the "Saved Schedule 0" link, there were then 48 possible schedules. It seems that the classes were added twice for some reason.
  • -
  • Attempted to add schedule name field but was unsure of where to send the variable.
  • Name this schedule: - - (For example: Fall ) +
    + (For example: Fall )