JustPaste.it

<?php require "verificauser.php" ?>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="magcr23">

<title>Menu Top</title>

<!-- Bootstrap Core CSS -->
<link href='' rel="nofollow">

<!-- Custom CSS -->
<link href='' rel="nofollow">

<!-- Morris Charts CSS -->
<link href='' rel="nofollow">

<!-- Custom Fonts -->
<link href='' rel="nofollow" type="text/css">
</head>

<body>

<div id="wrapper">

<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href=''>Admin</a>
</div>

<ul class="nav navbar-right top-nav">
<?php
include ("conexao.php");

$sql="SELECT * FROM admin";
$resultado = mysqli_query($con, $sql);
$row=mysqli_fetch_array($resultado,MYSQLI_ASSOC);
$user = $row['user'];
$user2 = $_SESSION["user"];
?>

<li class="dropdown">
<a href=''> <i class="fa fa-inbox"> </i> <?php echo "Mensagem" ?></a>
</li>

<li class="dropdown">
<a href='' class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-user"></i> <?php echo $user2; ?><b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href=''><i class="fa fa-fw fa-user"></i> Perfil</a>
</li>
<!--
<li>
<a href=''><i class="fa fa-fw fa-gear"></i> Definições</a>
</li>
<li class="divider"> </li>
-->
<li>
<a href=''><i class="fa fa-fw fa-power-off"></i> Log Out</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>

<?php
include ("fimConexao.php");
?>

</body>

</html>