我正在开发一个Web应用程序,但我对此很陌生。
基本理念:
用户登录并可以通过许多不同的表单输入数据。每个表单应连接到一个用户,并按年和月编目。
现在我的数据库结构是:
core_user: id_user,username, password
core_year: id_year, year
core_month: id_month, month
ch: id_ch, many variables...
我希望core_year
,core_month
和ch
中的列注册id_user
,以便我可以为用户检索和存储数据,按月和年
我尝试使用外键但没有成功。
我想要的是:
task--> user registered--> unique primary key=id_user
task--> year registered--> unique primary key=id_year with the id_user of the
session that is going on.
依旧......
有什么建议吗?