Hello All,

I am trying to build a form where:
A registered "User"
Selects from a checkbox list their "Interests"
and also
Selects from a radio list thier "Experience Level" associated with
each "Interest".

An example of the way the form will look follows:

User Information:

    User Id  100
Firstname  Joe
Lastname: Jones
      email:  [email protected]

Interests:                                  Skill Level:
[ ] MySql                                  O Beginner O Intermediate
OAdvanced O GURU
[ ] PHP                                     O Beginner O Intermediate
OAdvanced O GURU
[ ] CakePHP                             O Beginner O Intermediate
OAdvanced O GURU

I have successfully created the tables, models, views and controllers
to accomplish the following.

    User Id  100
Firstname  Joe
Lastname: Jones
      email:  [email protected]

Interests:
[X ] MySql
[X] PHP
[ ] CakePHP

I have been unsuccessfull in building the form to display the skill
level per each Interest and therefore record and users skill level per
selected "Interests"


    User Id  100
Firstname  Joe
Lastname: Jones
      email:  [email protected]

Interests:                                  Skill Level:
[X ] MySql                                 O Beginner O Intermediate O
Advanced O GURU
[X] PHP                                     O Beginner O Intermediate
O Advanced O GURU
[ ] CakePHP                              O Beginner O Intermediate O
Advanced O GURU

I have created the following tables

users
    |__ id
    |__firstname
    |__lastname
    |__email
    |__username
    |__password

interests
    |__id
    |__interest

interests_users
    |__id
    |__user_id
    |__interest_id

experience_levels
    |__id
    |__experience_level

experience_levels_interests_users
    |__id
    |__interests_users_id
    |__experience_levels_id


Wayne






--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to