Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
<?php include("C:\wamp64\www\analistas.php"); ?>
<?php
$nome = isset($_GET["nome"])? $_GET["nome"]:null;
$matricula = isset($_GET["matricula"])? $_GET["matricula"]:null;
$solicitacao = isset($_GET["solicitacao"])? $_GET["solicitacao"]:null;
$prioridade = isset($_GET["prioridade"])? $_GET["prioridade"]:null;
$orgao = isset($_GET["orgao"])? $_GET["orgao"]:null;
$conexao = mysqli_connect('localhost', 'root', '', 'analistas');
$query = "SELECT `solicitacao`,`prioridade`,`orgao`, `nome` from `analistas` WHERE `analistas`";
if (mysqli_query($conexao, $query))
{ ?>
<?php } ?>
<div class="wrapper">
<header class="main-header">
<a href="../../index.html" class="logo">
<span class="logo-mini"><b></b></span>
<span class="logo-lg"><b></b></span>
</a>
<nav class="navbar navbar-static-top">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
</nav>
</header>
<aside class="main-sidebar">
<section class="sidebar">
<div class="user-panel">
<div class="pull-left image">
<img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
</div>
<div class="pull-left info">
<p>Victor Alves</p>
<a href="#"><i class="fa fa-circle text-success"></i> 7716</a>
</div>
</div>
</section>
</aside>
<section class="content">
<div class="box">
<div class="box-header">
<h3 class="box-title" style="margin-left: 250px; margin-top: 15px; font-size: 30px;"><strong> Lista Pesquisas </strong></h3>
</div>
<!-- /.box-header -->
<div class="content" style=" margin-right: 20px;
margin-bottom: 20%;
width: 1200px;
margin-left: 10px;">
<table id="example" class="table table-striped " cellspacing="0" width="1300px" style="margin-left: 230px">
<thead>
<tr>
<th style="text-align: center">Solicitação</th>
<th style="text-align: center">Prioridades</th>
<th style="text-align: center">Órgão</th>
<th style="text-align: center">Analista</th>
<th></th>
</tr>
</thead>
<tbody style="text-align: center" action="analistas.php" method="post">
<?php
$conexao = mysqli_connect('localhost', 'root', '', 'analistas');
if(mysqli_connect_errno($conexao)){
echo 'Failed to connecto to database'.mysqli_connect_error();}
$query= mysqli_query($conexao, "SELECT DISTINCT * FROM tecnicos, ordem");
?>
<?php while($rows = mysqli_fetch_array($query)): ?>
<tr>
<td><?php echo $rows['solicitacao']; ?></td>
<td><?php echo $rows['prioridade']; ?></td>
<td></td>
<td></td>
<td><?php echo $rows['orgao']; ?></td>
<td><?php echo $rows['nome']; ?></td>
<td></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>Carregando comentários...