如何允许用户在我的网站上创建新帖子?

时间:2019-07-17 21:09:41

标签: php html mysql

我正在建立一个类似reddit的网站,用户可以在其中创建新帖子。我在这里有模板:

    <div class="post">
        <p class="toptext">
            <b>[The subreddit]</b> · Published by [username] [time] ago
        </p>
        <div class="main-content">
            <p class="title">
                [This would be the title of the post]
            </p>
            <p class="contain">
                [This would be the main text of the post]
            </p>
        </div>
    </div>

我相信我应该为存储帖子的每个“ subreddit”创建一个数据库表,然后从模板内部的数据库中查询回来。

我需要有关如何实际设置提交页面以及需要什么样的查询来获取存储的帖子以显示在其张贴的“ subreddit”和首页中的帮助。

0 个答案:

没有答案