Hi all,
i'm using a form to allow users insert a comment on a post.
When they insert characters like "à", "è", .... the text is not
inserted in the field into the database.

[ PHP Code ]
.....
$reqObj->setNotes( $this->form->getValue('notes') );
$reqObj->save();
..........

[ Query reported by the debug toolbar of Symfony ]
INSERT INTO cv_validation_request
(`ID`,`COMPANY_ID`,`CANDIDATE_ID`,`CREATED_AT`,`UPDATED_AT`,`STATUS`,`NOTES`)
VALUES (NULL,2,6,'2009-08-12 20:28:28','2009-08-12 20:28:28',0,'Cià')

Instead of have "Cià" value in the field, i have it set to null.
I tried the same query from mysql command line client and it works
(without any error).

Does anyone know how to solve this?

Greets

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to