我正在製作一個應用程序,用戶可以註冊課程。一個用戶可以註冊多個課程,最後我感興趣的數據看起來像這樣。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