Hi, I'm new to Drupal and am busy reading the docs and testing some of the modules, including CCK. It's a very impressive CMS and community!
I'd like to port an existing Perl/CGI site over to Drupal 4.7.x to take advantages of its many features, but am still not sure of the correct approach. Hopefully someone can point me to the right module/docs for completing this :).
The site to be ported has information about users. That information will be edited by each user or the site admin. Some of that information is a one-to-one relationship with each user (e.g., name, class year, etc.), while the rest is a one-to-many relationship (e.g., degrees earned (each having the name, field of study, and graduation year of the institution), papers published, etc.). Here is an example:
User1
-- [Name] John Doe
-- [Class] 1995
-- [Major] Engineering
-- [Graduate Education]
-- -- [School] Georgia Tech
-- -- -- [Year] 2000
-- -- -- [Degree Type] MS
-- -- -- [Major] Engineering
-- -- [School] MIT
-- -- -- [Year] 2005
-- -- -- [Degree Type] PhD
-- -- -- [Major] Engineering
but I don't know in advance how many schools/papers/etc. the user will be enternig. I'd like to get some input on the best way to handle this type of "node", or if that is even the correct approach.
Can I create a node that will ask for/allow multiple entries of certain data types? If so, can you please point me to the handbook/forum topic that explains how to do this?