Hi,

I've recently started working with this incredible framework, but still 
feeling some frustrations when trying to accomplish some things.

As a learning exercise, I'm trying to do the following (with no good 
results yet):

I've created this tables:

CREATE TABLE `brands` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`brand` VARCHAR( 200 ) NOT NULL
) ENGINE = innodb;

CREATE TABLE `computers` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`hd_id` INT NOT NULL ,
`mother_id` INT NOT NULL ,
`processor_id` INT NOT NULL
) ENGINE = innodb;

Ok, the system should allow users to insert computers, and have users 
select each part's brand (maxtor hd, intel mother, intel processor). 
I've tried building models and controllers for such operation with no 
success. Is there anything I'm doing wrong? Sorry if this is too basic, 
and thank you for helping me.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
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