本文整理汇总了PHP中Posts::createPost方法的典型用法代码示例。如果您正苦于以下问题:PHP Posts::createPost方法的具体用法?PHP Posts::createPost怎么用?PHP Posts::createPost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Posts
的用法示例。
在下文中一共展示了Posts::createPost方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
header("Location: http://localhost/websites/ssl/day7/main.php");
}
if (!isset($_SESSION["loggedin"])) {
header("Location: http://localhost/websites/ssl/day7/main.php");
}
if (!empty($_GET["action"])) {
if ($_GET["action"] == "getAll") {
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
} elseif ($_GET["action"] == "readPost") {
$data = $posts->readPost($_GET["postId"]);
$myview->getView("../views/blogPost.php", $data);
} elseif ($_GET["action"] == "updatePost") {
$data = $posts->readPost($_GET["postId"]);
$myview->getView("../views/formUpdate.html", $data);
} elseif ($_GET["action"] == "changePost") {
$posts->updatePost($_POST["title"], $_POST["detail"], $_POST["postId"]);
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
} elseif ($_GET["action"] == "deletePost") {
$posts->deletePost($_GET["postId"]);
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
} elseif ($_GET["action"] == "createPost") {
$posts->createPost($_POST["title"], $_POST["detail"], $_SESSION["userId"]);
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
}
} elseif (empty($_GET["postId"])) {
$myview->getView("../views/home.php", array());
}
示例2: header
if (!isset($_SESSION["loggedin"])) {
header("Location: http://localhost/websites/ssl/day5/main.php");
} else {
echo "banana (session set)";
}
if (!empty($_GET["action"])) {
if ($_GET["action"] == "getAll") {
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
} elseif ($_GET["action"] == "readPost") {
$data = $posts->readPost($_GET["postId"]);
$myview->getView("../views/blogPost.php", $data);
} elseif ($_GET["action"] == "updatePost") {
$data = $posts->readPost($_GET["postId"]);
$myview->getView("../views/formUpdate.html", $data);
} elseif ($_GET["action"] == "changePost") {
$posts->updatePost($_POST["title"], $_POST["detail"], $_POST["postId"]);
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
} elseif ($_GET["action"] == "deletePost") {
$posts->deletePost($_GET["postId"]);
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
} elseif ($_GET["action"] == "createPost") {
$posts->createPost($_POST["title"], $_POST["detail"]);
$data = $posts->readPosts();
$myview->getView("../views/body.php", $data);
}
} elseif (empty($_GET["postId"])) {
$myview->getView("../views/home.php", array());
}