Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~104 People Reached
Favorite Forums
Favorite Tags
Member Avatar for lord_linus

Recently I am working on symfony. I have created a simple form and want to submit that form and send respons to user as email. In index i have written as follow: $product=new Product(); $product->setName('rohit'); $product->setPass('rohit'); $form=$this->createFormBuilder($product) ->add('name','text') ->add('pass','password') ->getForm(); $name='rohit'; return $this->render('EnsNewBundle:Email:ind.html.twig', array('form'=>$form->createView(),'name'=>$name)); and when i submit this form …

Member Avatar for LastMitch
0
104