CakePHP Associations error? Won't save associated table
问题 I created a user profile where users can add their information. So on URL section I want them to put their other links like Facebook, www.facebook.com/user etc. But when I click Save nothing updates? Here is the Model for User: Models/User.php <?php class User extends AppModel { public $name = 'User'; public $hasMany = array ( 'UserWeb'=>array( 'className'=>'UserWeb', 'foreignKey'=>'user_id' ) ); } ?> The model for UserWeb: Models/UserWeb.php <?php class UserWeb extends AppModel { public