我正在制作一个应用程序,用户可以注册课程。一个用户可以注册多个课程,最后我感兴趣的数据看起来像这样。mysql和php如何存储信息
array(
0 => array(
0 => 12, // 0 is nothing 12 is the course id which i use to refference
'date_joined' => 1301123384 // when the user joined the course
),
1 => array(
0 => 52, // the same as above
'date_joined' => 1301123384
)
)
我还需要主数组的键来确定用户加入的顺序。 要存储它,我将它序列化为一个字符串并将其保存在数据库中。
这是一个好方法吗?
它可以做不同吗?更好?
我并不需要一个MySQL查询我需要知道,如果不是一个数组转换为一个字符串
好吧,我明白了,谢谢! – andrei 2011-03-26 07:57:00