Since you're creating your form with model 'ABC', your data array
should look like

$this->data['ABC'][]

So instead of checking for the presence of data in it's entirety,
check for that specific key:

if( !empty( $this->data['ABC'] ) ) {
   // execute saving method
}

If you were sending data along too, such as

echo $form->hidden('id'); // still assuming the ABC model

Then you could check for

if( !empty( $this->data['ABC']['id'] ) ) {
   // run operation
}

-dan


On Aug 4, 6:36 am, Tomfox Wiranata <[email protected]> wrote:
> i did react on form submitting a bunch of times....but it seems
> different since there is no input field.......
>
> do i need to place just a button without a form? seems to make sense.
> dont know if that is possible!!?
>
> On 4 Aug., 15:19, Tomfox Wiranata <[email protected]> wrote:
>
>
>
> > hi everyone,
>
> > this seems really easy, but it's giving me a headache. I have a
> > function in my controller:
>
> > function createABC() {
>
> > // save stuff in database
>
> > }
>
> > this function is triggered by a form in a view, named createABC.ctp.
> > like this
>
> > echo $form->create('ABC', array('action' => 'createABC'));
> > echo $form->button('save', array('type' => 'submit'));
> > echo $form->end();
>
> > now, I do not want to start the saving procedure everytime the view is
> > called. so i wanna check if this button is hit first. if it is, then
> > save all the data. so i tried to check it like that:
>
> > function createABC() {
>
> >    if (!empty ($this->data)) {
> >       // save stuff in database
> >    }
>
> > }
>
> > it does not work. anybody know why?
>
> > huuuge thx

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" 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