public function show()
 {
     $cache = new Cache();
     $cache->start();
     $appel = new Posts();
     $posts = $appel->findbyid($_GET['id']);
     $this->variable('post', $posts);
     $this->render('show', 'Posts');
     $cache->end();
 }