The foreach statement requires that the first argument is an array. In your case, $formdata = null, which is NOT an array; null is different from an empty array. Your code needs to check if $formdata is null (see: http://php.net/manual/en/function.is-null.php) and skip the foreach loop accordingly, or possibly typecast the variable to an array (see: http://book.cakephp.org/view/1550/Setting-up-permissions)
-- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
