Example #1
0
<?php

require_once "res/utils.php";
session_start();
$client = $_SESSION["client"];
$now = new DateTime();
if (Client::e($_POST["date"])) {
    $date = new DateTime($_POST["date"]);
} else {
    $date = new DateTime();
}
try {
    $client->updateRecord($_POST['done']);
    $client->updateComment($_POST['comm']);
    $client->resetRecords($_POST['reset'], $date);
    $date = $client->loadRecords($date);
    function addRec($rec, $name)
    {
        echo '<div class="recentry">';
        echo "<input type='hidden' class='idholder' name='id' value='{$rec['id']}' />";
        echo "<div class='recchk recelem'> <label><input type='checkbox' name='{$name}' value='{$rec['id']}' " . ($rec['checked'] == 0 ? "" : "checked='checked'") . " onchange='recChanged();' class='isdone' />" . "<span></span></label></div>";
        echo "<div class='recname recelem'>{$rec['task_name']}</div>";
        echo "<div class='recsummary recelem'>{$rec['summary']}</div>";
        echo "<div class='reccommentedt recelem'><div>Comment : </div> <input type='text' value='{$rec['comment']}' " . "onchange='recChanged();' onblur='editorclose(this);' class='comment' placeholder='Comment !!' /></div>";
        echo "<div class='reccomment recelem'>{$rec['comment']}<span class='editbtn' onclick='editcomment(this);'></span></div>";
        echo '</div>';
    }
    ?>
<div id="dateshower"><?php 
    echo $date->format('d M Y');
    ?>
Example #2
0
 public function updateComment(&$comments)
 {
     if (Client::e($comments) && gettype($comments) == 'array') {
         $conn = Connector::getConn();
         foreach ($comments as $k => $v) {
             $conn->exec("UPDATE record SET comment = '{$v}' " . "WHERE id = {$k} AND user_id = {$this->userid}");
         }
     }
 }