Few hints :

- in your controller you do not mention the helpers : Form, Html but
maybe the are in app_controller ?
- try to replace the <form action> with <?php echo $form-
>create(array('action' => 'create')); ?>

Hope this helps

On Aug 4, 4:49 am, pbland <[EMAIL PROTECTED]> wrote:
> Yes, here's my view:
>
> <div id="create_acct">
>                 <form action="<?php echo $form->url('/accounts/create'); ?>"
> method="post" name="form">
>                         <fieldset>
>                                 <legend>Registration Information</legend>
>                                 <dl>
>                                         <dt><label>First 
> Name<span>*</span>:</label></dt><dd><?php echo
> $form->input('Account.first_name',
> array('class'=>'required','label'=>false,'size'=>'30'));?></dd>
>                                         <dt><label>Last 
> Name<span>*</span>:</label></dt><dd><?php echo
> $form->input('Account.last_name',array('label'=>false,'size'=>30)); ?></dd>
>
>                                 </dl>
>                                 <p><?php echo $form->submit('Save') ?></p>
>                         </fieldset>
>                         <p><span class="asterick">*</span>Required field</p>
>                 </form>
>         </div>


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