0
I made a form that sends data from a php page to a database and only the data without accentuation are being sent, if I put an accent, none of that field arrives in the database, not even something blank.
From now on I appreciate any help
Excerpt from the code:
<textarea cols=\'20\' rows=\'10\' name=\'text\'></textarea>
<input type="submit" value="Enviar" name="enviar">
if(isset($_POST['enviar'])){
$teste2 = $_POST['text'];
mysql_query("INSERT INTO `testes`(`texto`) VALUES ('".$teste2."');
Good on the accents solved colcoando a utf-8 enconde before the $POST, but now characters like /, *. + are not sent.
– Giovany Henrique
Can you post your real code? This code you put in shouldn’t even run, there are syntax errors.
– bfavaretto