初学者使用 PHP/MySQL 管理用户配置文件
我是 PHP/MySql 的初学者,将开发一个具有用户管理的简单网站。我喜欢使用 OpenId 的想法(就像 stackoverflow 使用的那样)。
我想知道从哪里开始呢?我应该读什么?
我没有太多时间,所以可能会输入 PHP 用户会话管理的所有详细信息,这是因为我搜索类似 PHP for dummies 中的用户配置文件管理 8D
环境:
Linux操作系统
阿帕奇2.2.15
MySQL 5.1.41
PHP 5.2.13cPanel 11.25.0
I am beginner in PHP/MySql and would develop a simple site that has user management. I like the idea of using OpenId's (like stackoverflow uses).
I wonder from where to start? What should I read?
I have not much time so probably will net enter in all details of PHP user session management, this because I search something like User profiles management in PHP for dummies 8D
Environment:
Linux OS
Apache 2.2.15
MySQL 5.1.41
PHP 5.2.13cPanel 11.25.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议不要从使用 OpenID 开始,因为在本地数据库中存储登录名和传递信息比通常的方法更困难。您可以稍后实施 OpenID。
从设计数据库开始。然后在 SO 中搜索
PHP Authentication
获取示例,最后看看 PHP 会话管理 .抱歉,缺乏时间并不是借口。如果您有基本的数据库知识,用户配置文件管理并不比任何其他数据管理难。如果你不这样做 - 最好开始学习它。
I'd advise not to start from using OpenID, as it would be harder than usual way with storing login and pass in the local database. You can implement OpenID later.
Start from designing a database. Then search SO for
PHP Authentication
for examples and finally take a look at PHP session management.And sorry, but lack of time is not an excuse. If you have basic database knowledge, user profile management is not harder than any other data menagement. If you don't - better start to learn it.