Example #1
0
?>
</h2>
<div>
    <table class="">
        <tr>
        <col width="100">
        <col width="100">
        <col width="300">
        <col width="50">
        <col width="50">
            <th>Date</th>
        <th>Time</th>
        <th>Task</th>
        </tr>
        <?php 
foreach ($planner->getAllTasks() as $row) {
    if ($row['is_deleted'] == 0) {
        ?>
              <tr>
                  <td><?php 
        echo $row['date'];
        ?>
</td>
                  <td><?php 
        echo $row['time'];
        ?>
</td>
                  <?php 
        if ($row['is_done'] == 1) {
            ?>
                      <td class="strike"><img title="Done!" src="<?php