我需要编写打开执行查询的php页面的脚本。特别是我必须登录/注册。我已经有了查询和数据库工作(我在我的网站上有一个工作登录/注册)。 我想直接使用c ++连接到服务器并从程序发送查询,但我听说这是因为安全性(我甚至无法连接到服务器,除非我直接从网站上进行)。 所以我在互联网上发现,最好的方法是写一个服务器的连接和.php页面上的查询,这些查询将被c ++程序调用,该程序也在POST中传递变量(用户名和密码)登录或注册。 我可以写php页面,但我不知道如何制作程序 基本上,在伪代码中,我想这样做
//Things i already know how to do
- read username from console
- read password from console
- read if the user wants to login or register
//Things i don't know how to do
- send username, password (and if the user wants to login or register) to a php page that can execute the right queries and connect to the db
- perform all the checks on the username (not duplicated etc)
通过知道如何打开php页面,我也可以做其他我感兴趣的事情,比如在连接后创建用户采取的动作日志(实际上在登录后你可以在DirectX中玩一个小游戏所以我可以像分数或播放的时间一样上传等) 非常感谢