<h1>Notícias</h1>
        </section>
        <!-- Main content -->
        <section class="content">
          <div class="row">
            <div class="col-lg-12">
              <!-- Horizontal Form -->
              <div class="box box-info">
                <div class="box-header with-border">
                  <h3 class="box-title">Confirmar exclusão da notícia</h3>
                </div><!-- /.box-header -->
               <?php 
$id = $_POST["id"];
if (isset($_POST["excluir"])) {
    $exib = new Noticias();
    $comp = $exib->SelectInfoNoticias($id);
    if ($exib != null) {
        ?>
                  <div class="box-body">
                     <div class="form-group">
                        <dl class="dl-horizontal">
                           <dt>Titulo da notícia:</dt>
                           <dd><?php 
        echo $comp->titulo;
        ?>
</dd>
                           <dt>Status:</dt>
                           <dd><?php 
        $badge = new Select();
        $badge->labelStatus($comp->status);
        ?>