将 HTML/PHP 文件存储在数据库中并将其用作每个用户的索引/主页
无论如何,是否可以将网页作为 BLOB 或其他内容存储在 mySQL 中?...并在用户登录网站后使用该网页作为索引/主页?...
如果您还可以给我指出一个教程,或者至少代码一瞥,非常感谢!!...
^_^
Is there anyway to store web page in mySQL as a BLOB or anything?.. and using that webpage as the index/home page once a user logs in into the website?..
If you could also point me at a tutorial or at least a glimpse of a code that WOULD BE VERY MUCH APPRECIATED!!...
^_^
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,MySQL 中有一种名为
BLOB
的字段类型。您可以使用该字段来存储页面内容。在前端,您可以使用一些非常酷的WYSIWYG
工具,例如 CKEditor、TinyMCE 。Yes there is a field type in MySQL called
BLOB
. You may use that field to store you page content. And on front end you may use some very coolWYSIWYG
tools like CKEditor, TinyMCE .