Hi all,
I am sending a form to processform action in symfony actions.
protected function processStudentsForm(sfWebRequest $request, sfForm $form)
{
$form->bind($request->getParameter($form->getName()));
if ($form->isValid())
{
$students = $form->save();
return true;
}
return false;
}
The form is valid, but save() is throwing a segmentation fault. In apache
error log, error message is
child pid ****** exit signal Segmentation fault (11).
Please help me in this.
Thanks in advance,
Murali Krishna
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" 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/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---