Re: CakePHP 1.2 - Form select

2007-10-18 Thread silid
I could do with finding a good tutorial too. I found the samples at http://www.donutczar.com/cake1point2/donuts/form_helper They are a good start. On Oct 14, 4:49 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Its okay now. I just add 1 null value to the attribute of select > > before it

Re: CakePHP 1.2 - Form select

2007-10-13 Thread [EMAIL PROTECTED]
Its okay now. I just add 1 null value to the attribute of select before it was... echo $form->select("gender", array("" => "- Select One -", "M" => "Male", "F" => "Female"), null, false); after.. echo $form->select("gender", array("" => "- Select One -", "M" => "Male", "F" => "Female"), null, nu

Re: CakePHP 1.2 - Form select

2007-10-13 Thread Wayne Fay
You'll need to provide more information about what you're doing and what is happening. Many of us are very successfully using select boxes in our forms with Cake 1.2, so it seems to be something specific to your environment or your code. Wayne On 10/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> w

CakePHP 1.2 - Form select

2007-10-13 Thread [EMAIL PROTECTED]
Hi, I'm trying to put up a registration form for my website but unfortunately I encountered this problem, I can't retain the form- >select value during validation. How can I retain the value being selected on my $form->select while on the process of validation. I've been trying to search for answ