我有一个表单,我将帖子添加到我的数据库表中,我在此表中创建了类别,我在“添加帖子”表单中选择了在添加帖子时选择类别的选项。它在我的其他网站上工作只是为了尝试一些新的东西,但对我的主项目它没有,我使用相同的代码与相同的表名称。有人可以检查代码并告诉我我的错误在哪里吗?
这就是我的整个ADDposts表格:
<?php
include 'includes/connect.php';
if(isset($_POST['add']))
{
$time = time();
$title = htmlspecialchars($_POST['title']);
$content = strip_tags($_POST['content']);
$post_image= $_FILES['image'] ['name'];
$image_tmp= $_FILES['image'] ['tmp_name'];
$q = "INSERT INTO posts(post_title,post_content,post_author,added,post_image) VALUES('$title','$content','Papazov','$time','$post_image')";
mysql_query($q) or die (mysql_error());
}
?>
<!DOCTYPE html>
<?php include "hhh.html"; ?> <br /><br />
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>MatchZone</title>
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
</head>
<body>
<p>
<form method="post" action="Addpost.php" enctype="multipart/form-data">
Заглавие: <input type="text" name="title" /><br/><br/>
<tr>
<td align="right">Preview:</td>
<td><input type="text" name="preview" size="30"></td>
</tr>
<br />
<br />
<tr>
<td align="right">Сложи снимка: </td>
<td><input type="file" name="image"></td>
</tr>
<br/><br/>
Категория: <select name="category">
<?php
$q = mysql_query("SELECT*FROM categories") or die (mysql_error());
while($c = mysql_fetch_assoc($q))
{
print '<option value="'.$c['cat_id'].'">'.$c['name'].'</option>\n';
}
?>
</select><br />
<br />
<textarea class="ckeditor" name= "content" cols="30" rows="10"></textarea><br />
<input type="submit" name="add" value="Добави" />
</form>
</p>
</body>
</html>
答案 0 :(得分:0)
你关闭了select标签吗?如果您可以显示插入数据库的部分将有帮助
答案 1 :(得分:0)
这让我觉得你试图在同一页面上运行所有内容。
如果是这种情况(很可能是这种情况),请将action="Addpost.php"
更改为action=""
由于您的代码顶部附近有if(isset($_POST['add']))
,
以及<input type="submit" name="add" value="Добави" />
下方明显位于同一页面。