Needless to say I'm new to Cake!
Does anyone know why I get

"Fatal error: Call to undefined method FormHelper::create() in /app/
web/dev/cake/app/views/members/login.thtml on line 4"

from the code below?

<div class="login">
        <h2>Login</h2>
    <?php
        echo $form->create('Members', array('action' => 'login')); //line 4
        echo $form->input('username');
        echo $form->input('password');
        echo $form->submit('Login');
        echo $form->end();
        ?>
</div>

I'm running version: cake_1.1.17.5612
Everything else seems to be working ok


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

Reply via email to