Why in your users/something function you don't write

function something($id = null) {

                if (!$id) {
                        $this->Session->setFlash("record not existent");
                        $this->redirect(array('action'=>'index'), null, true);
                        exit;
                }

                $user = $this->User->read(null, $id);

                //se ho id e id esiste
                if(!empty($user)){
                //aumento hits di 1
                $this->set('user', $user);
                $this->set('title_for_layout', $post['User']['name'].' :: 
User');
                }
                else{
                    $this->Session->setFlash("user not existent");
                        $this->redirect(array('action'=>'index'), null, true);
                        exit;
                }

        }


--~--~---------~--~----~------------~-------~--~----~
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