管理员制作的带有可编辑小帖子的页面

我只是想了解一下如何为用户创建一个网站页面,在该页面上可以看到小帖子部分,只有一些文本和标题可能是图片,管理员将在同一页面中编辑和发布,而编辑器仅可见对于管理员。请如果有人能给我一盏灯开始制作它。

这是一张解释它的图片:

http://img1.mukewang.com/61284f470001987f06880672.jpg

小唯快跑啊
浏览 138回答 1
1回答

红糖糍粑

逻辑:您将帖子上传到数据库表。获取每一行并将其分配给一个变量。解析分配的变量,将包含 title 和 content 的项目打印到您的 html 页面中。它几乎是这样的:<form action="query to upload this info to your table" method="post">&nbsp; &nbsp; <input name="title" value="">&nbsp; &nbsp; <input type="text" name="content">&nbsp; &nbsp; <button type="submit">Submit</button></form><?php&nbsp;$conn = new mysqli($servername, $username, $password, $dbname);$posts = $conn->query("select * from yourTableName") ;// print every rows from table into html pageforeach ($posts as $item) {&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; ?>&nbsp; &nbsp; <div>&nbsp; &nbsp; &nbsp; &nbsp; <h3><?php $item->title?></h3>&nbsp; &nbsp; &nbsp; &nbsp; <hr>&nbsp; &nbsp; &nbsp; &nbsp; <p><?php $item->content?></p>&nbsp; &nbsp; </div>&nbsp; &nbsp; <?php}$conn->close();?>
打开App,查看更多内容
随时随地看视频慕课网APP