I get the name of the news and insert it in another table, but one of the fields is going in half, follow the image of print :
Database
Sourcecodewhereyousend:
<inputname="nomenoticia" type="hidden" id="nomenoticia"
value="PC realiza apreensão de arma de fogo e droga no Bairro Jardim Esperança." size="80"
maxlength="100">
Excerpt from the code I'm doing the insert
$noticia = $_POST['noticia'];
$titulonoticia = $_POST['nomenoticia'];
$nome = $_POST['nome'];
$comentario = $_POST['comentario'];
$status = $_POST['status'];
$sqlInsert= "INSERT INTO comentarios (noticia,nomenoticia,nome,comentario,status) VALUES (:noticia,:nomenoticia,:nome,:comentario,:status)";
$stmt = DB::prepare($sqlInsert);
$stmt->bindParam("noticia", $noticia);
$stmt->bindParam("nomenoticia", $titulonoticia);
$stmt->bindParam("nome", $nome);
$stmt->bindParam("comentario", $comentario);
$stmt->bindParam("status", $status);
$stmt->execute();