I got error message like :
Warning: Missing argument 1 for UsersController::view() in D:\Program
Files\xampp\htdocs\ck\app\controllers\users_controller.php on line 65
Notice: Undefined variable: username in D:\Program
Files\xampp\htdocs\ck\app\controllers\users_controller.php on line 67
The code I set :
$Route->connect('/:username', array('controller' => 'users', 'action'=>
'view'));
function view($username)
{
$this->set('user', $this->User->read(null, $username));
}
I change the $id to $username.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Cake PHP" 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
-~----------~----~----~----~------~----~------~--~---