当前位置: 首页>>代码示例>>PHP>>正文


PHP Dao::saveComment方法代码示例

本文整理汇总了PHP中Dao::saveComment方法的典型用法代码示例。如果您正苦于以下问题:PHP Dao::saveComment方法的具体用法?PHP Dao::saveComment怎么用?PHP Dao::saveComment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Dao的用法示例。


在下文中一共展示了Dao::saveComment方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Dao

<?php

// handler.php
// handle comment posts, saving to MySQL and redirecting back to the list
if (!isset($_SESSION)) {
    session_start();
}
require_once "classes/dao.php";
if (isset($_SESSION["name"]) && isset($_POST["commentButton"])) {
    $comment = $_POST["comment"];
    $comment_type = $_POST["vote"];
    $bill = $_POST["bill"];
    $username = $_SESSION["name"];
    try {
        $dao = new Dao();
        $dao->saveComment($username, $comment, $bill, $comment_type);
    } catch (Exception $e) {
        var_dump($e);
        die;
    }
} else {
    $dao = new Dao();
    $dao->redirect("../index.php", "Please log in to comment.");
}
header("Location:../index.php");
开发者ID:paleomedia,项目名称:idleg_flask,代码行数:25,代码来源:handler.php

示例2: clean_input

<?php

session_start();
require_once $_SERVER['DOCUMENT_ROOT'] . "/resources/Dao.php";
$dao = new Dao();
$user = $dao->getUser($_SESSION["email"]);
$user_id = $user["id"];
$content = clean_input($_POST["content"]);
$post_id = $_POST["post_id"];
$id = $dao->saveComment($user_id, $post_id, $content);
function clean_input($data)
{
    $data = trim($data);
    $data = stripslashes($data);
    $data = htmlspecialchars($data);
    return $data;
}
?>

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="refresh" content="0; url=<?php 
echo $_SERVER['HTTP_REFERER'];
?>
" />
</head>
<body>
  <h1>
  </h1>
开发者ID:nickbender,项目名称:metacode,代码行数:31,代码来源:new-comment.php

示例3: Dao

<?php 
// handler.php
// handle comment posts, saving to MySQL and redirecting back to the list
require_once "Dao.php";
if (isset($_POST["commentButton"])) {
    $comment = $_POST["comment"];
    try {
        $dao = new Dao();
        $dao->saveComment($comment);
    } catch (Exception $e) {
        var_dump($e);
        die;
    }
}
header("Location:index.php");
?>

开发者ID:antoniodebaca,项目名称:foreclosure,代码行数:16,代码来源:handler.php


注:本文中的Dao::saveComment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。