The information I get in the user model (getTimeLine method) gets to the homeController, but does not arrive in the homeView in the input type hidden in the value attribute.
public function perfil($id) {
$dados = array();
$p = new posts();
if(isset($_POST['msg']) && !empty($_POST['msg'])) {
$msg = addslashes($_POST['msg']);
$time_line = addslashes($_POST['time_line']);
$p->inserirPost($msg, $time_line);
}
$u = new usuarios($id);
$dados['nome'] = $u->getNome();
$dados['localizacao'] = $u->getLocalizacao();
$dados['avatar'] = $u->getAvatar();
$dados['feed'] = $u->getFeed();
$dados['time_line'] = $p->getTimeLine();
$this->loadTemplate('home', $dados);
}
<!-- Formulario -->
<div class="well">
<h4 class="text-center">Redactar un nuevo Tweet</h4>
<form method="POST" class="form-group">
<textarea name="msg" class="form-control" rows="3"></textarea><br/>
<input type="hidden" name="time_line" value="<?php echo $time_line; ?>">
<input type="submit" value="Twittear" class="btn btn-primary" />
</form>
</div>
<!-- End formulario -->