我正在设计一个博客网站,每个人都可以写博客文章。
我在 create_post.php 中使用 ckeditor 但有一个问题:
用户可以通过 ckeditor 上传图像,然后可以关闭 create_post.php 页面。所以在这种情况下,一张图片上传到服务器上,但没有人会看到它,因为用户在发布之前关闭了页面。
有没有办法在上传后自动将图片附加到帖子中?
这是表格:
<form method="post" action="create_post.php" >
<textarea class="ckeditor" name="body" ></textarea>
<input type="submit" value="send" name="submit" />
</form>