I downloaded a recommended help desk application called Ocomon
and I use WAMP
.
I installed everything. The database uses utf8_general_ci
and the application is in Portuguese (BR) but when I try to put some data with accents, the record is saved, but the columns with accentuated text are not saved.
Anyone knows what I am doing wrong?
Example of code with the error:
$qry = "UPDATE configusercall SET ".
"conf_user_opencall= ".$_POST['useropencall'].", ".
"conf_ownarea = ".$_POST['ownarea'].", ".
"conf_scr_msg = '".noHtml($_POST['msg'])."' WHERE conf_cod = 1 ";