示例#1
0
<?php

/**
 * Created by PhpStorm.
 * User: andre_000
 * Date: 06.09.2015
 * Time: 17:20
 */
session_start();
include "dedugan.php";
$pd = connectDB();
$comment = new BlogCommentsRecord();
$blogID = $_SESSION["currentID"];
$comments = $comment->getComments($blogID, $pd);
echo json_encode($comments);
示例#2
0
<?php

if (isset($_POST["text"])) {
    session_start();
    include "dedugan.php";
    $pd = connectDB();
    $user = $_POST["username"];
    $comment = new BlogCommentsRecord("blogcomments");
    $text = $_POST["text"];
    $blogID = $_SESSION["currentID"];
    $date = date("Y-m-d H:i:s");
    $comment->add($blogID, $text, $user, $date, $pd);
    echo "ok";
}