我想在用户登录并发布内容时自动创建一个新的html页面(就像有人在stackoverflow中发布问题时创建的那样)。我该怎么办?
答案 0 :(得分:0)
您需要学习的是:
要开始学习,请了解如何在mysql中创建database和tables。 在那之后你我将不得不学习如何insert your information into a database with php. 您可能还希望有人registrer themself and login.
最后,您需要从数据库中通过id抓取内容并将其打印到您的php文件中。这可以通过向您的网址添加变量来完成。
示例:
<强>本地主机/的index.php?交= 1 强>
现在您可以抓住您的帖子ID&#39;或$_GET["id"]
的任何内容答案 1 :(得分:-1)
要生成HTML页面:
$filename = 'test.html';
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=$filename");
header("Content-Type: application/octet-stream; ");
header("Content-Transfer-Encoding: binary");