背景:所以,我一直在关注本教程,了解如何在 Youtube 上使用 PHP 和 MySQL 构建自己的简单博客/CMS。CMS 允许您添加类别、添加帖子、查看类别列表以及删除和编辑帖子。这些文件由 index.php 文件、edit_post.php、add_post.php 等组成。此外,还有一个包含所有函数的 blog.php 文件。还有配置和初始化文件。该数据库有两个表,帖子和类别。该博客非常丑陋,但一切正常,除了:
问题:编辑帖子时,帖子内容移动到帖子标题,cat_id替换为数字0,内容替换为数字1。我只能在phpmyadmin中查看数据库才能看到这个信息。至于 index.php 页面,帖子就消失了。我还收到这两个错误:“未定义变量:第 69 行 C:\xampp\htdocs\blogg\resources\func\blogg.php 中的帖子”和“C:\xampp\htdocs\ 中为 foreach() 提供的参数无效第 40 行的 blogg\index.php"。
代码:我知道代码使用了过时的 mysql 函数。我稍后会解决这个问题。这不是这里的问题。无论如何,这是代码。我真的很感谢这里的帮助。
从包含所有功能的文件中:
function edit_post($id, $title, $contents, $category) {
$id = (int) $id;
$title = mysql_real_escape_string($title);
$contents = mysql_real_escape_string($contents);
$category = (int) $category;
mysql_query(" UPDATE `posts` SET
`cat_id` = {$category},
`title` = '{$title}',
`contents` = '{$contents}'
WHERE `id` = {$id}");
}
整个 edit_post.php 文件:
<?php
include_once('resources/init.php');
$post = get_posts($_GET['id']);
if ( isset($_POST['title'], $_POST['contents'], $_POST['category']) ) {
$errors = array();
$title = trim($_POST['title']);
$contents = trim($_POST['contents']);
if ( empty ($title) ) {
$errors[] = 'Skriv in titel';
}
if ( empty ($contents) ) {
$errors[] = 'Skriv in text';
}
if ( ! category_exists('id', $_POST['category']) ) {
$errors[] = 'Kategorin finns inte';
}
if ( strlen($title) > 255) {
$errors[] = 'Titeln får inte vara längre än 255 tecken';
}
if ( empty($errors) ) {
edit_post($_GET['id']. $title, $contents, $_POST['category']);
header("Location: index.php?id={$post[0]['post_id']}");
die();
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<style>
label { display: block; }
</style>
<title> Edit a Post </title>
</head>
<body>
<h1> Edit a Post </h1>
<?php
if ( isset($errors) && ! empty($errors) ) {
echo '<ul><li>', implode('</li><li>', $errors), '</li></ul>';
}
?>
<form action="" method="post">
<div>
<label for="title"> Title </label>
<input type="text" name="title" value="<?php echo $post[0]['title']; ?>">
</div>
<div>
<label for="contents"> Contents </label>
<textarea name="contents" rows="15" cols="50"><?php echo $post[0]['contents']; ?></textarea>
</div>
<div>
<label for="category"> Category </label>
<select name="category">
<?php
foreach ( get_categories() as $category ) {
$selected = ($category['name'] == $post[0]['name']) ? ' selected' : '';
?>
<option value="<?php echo $category['id']; ?>" <?php echo $selected; ?>> <?php echo $category['name']; ?> </option>
<?php
}
?>
</select>
</div>
<div>
<input type="submit" value="Edit Post">
</div>
</form>
</body>
</html>