PHP database connection class

后端 未结 6 1983
名媛妹妹
名媛妹妹 2020-12-08 05:29

I am trying to get a users ID from a database within a class, but I have very little to no experience with classes, how could I go about getting the uid from the DB and then

6条回答
  •  青春惊慌失措
    2020-12-08 06:29

    • Create two classes. One for working with database, second one for managing User or Auth data.
    • For SQL class create methods connect(), query(), fetch() etc
    • For User class create methods get($id) etc

提交回复
热议问题