Hi guys,

I've created News model and it's related form, repository.

Now, I can't save my posting data into my database.

code:
$form->bind($this->get('request'));

        // If the form has been submitted and is valid...
        if ($form->isValid()) {
          $em = $this->getEm();
          $em->persist($this->news);
          $em->flush();
          return $this->redirect($this->generateUrl('news'));
        }

I just need to know how to persist news object.

Thank your help



Symfony Rock!
Erkhembayar Gantulga

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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

Reply via email to