grungefreak Posted October 30, 2009 Share Posted October 30, 2009 Hi, I am trying to develop a prototype as follows: This is an online course in teaching Java programming. The user has the choice to follow a specific path throughout the lesson e.g. view some video tutorials, use the interactive quizes, just read text etc. Based on the decisions (links clicked), the system will then build a user profile of this persons learning style e.g. a visual learner, interactive learner etc. I am just setting out with this so I want to ask you the followingL Should I assign a value to each link and then send the result to a user profile table in my database? Or is there a better approach? I want to export the contents of my database and analyse the results using SPSS or PASW as it's now known (it's a statistical analysis tool that identifies clusters e.g. in this case, it will take the results of my databse on csv format, import them and identify cluster groups from this). Hope I haven't been too long winded but any guidance or suggestions, links etc would be most appreciated. GF Link to comment https://forums.phpfreaks.com/topic/179665-using-php-to-categorize-links-and-send-results-to-mysql-db/ Share on other sites More sharing options...
lemmin Posted October 30, 2009 Share Posted October 30, 2009 I would have a simple two column table for pageID and userID to relate what pages the students go to. On each page, you can have the database insert current userID and pageID, ignoring duplicate entries. Link to comment https://forums.phpfreaks.com/topic/179665-using-php-to-categorize-links-and-send-results-to-mysql-db/#findComment-948010 Share on other sites More sharing options...
grungefreak Posted October 30, 2009 Author Share Posted October 30, 2009 Cheers. I like that idea. All suggestions welcome. GF Link to comment https://forums.phpfreaks.com/topic/179665-using-php-to-categorize-links-and-send-results-to-mysql-db/#findComment-948012 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.